Primer CSS Hover Animation Last Updated : 20 Apr, 2022 Comments Improve Suggest changes Like Article Like Report Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. It is highly reusable and flexible. It is created with GitHub’s design system. Animations are an important tool to attract users to a specific part of the web page. It helps to point out something important to the consumers. There are different types of animation that we can make use of them as the hover type. Hover animation is used to elevate or scale up a UI element when the user hovers on it. Primer CSS Hover Animation Class: .anim-hover-grow: Add this class to the respective element to implement this animation. Syntax: <div class=".anim-hover-grow"> ... </div> Example: This example demonstrates the use of the Primer CSS Hover animation using the anim-hover-grow class. You can see the output in the image below. When the user hovers over the image it scales up. HTML <!DOCTYPE html> <html> <head> <title>Primer CSS Pulse Animation</title> <link rel="stylesheet" href= "https://unpkg.com/@primer/css@^18.0.0/dist/primer.css" /> </head> <body> <div class="text-center"> <h1 class="color-fg-success"> GeeksforGeeks </h1> <h3><u>Primer CSS Hover Animation</u></h3><br /> </div> <div class="anim-hover-grow d-flex flex-justify-center"> <img style="width:150px;border:5px double;" src= 'https://media.geeksforgeeks.org/wp-content/uploads/20210604014825/QNHrwL2q-100x100.jpg'> </div> </body> </html> Output: Primer CSS Hover Animation Reference: https://primer.style/css/utilities/animations#hover-animation Comment More infoAdvertise with us Next Article Primer CSS Hover Animation namankedia Follow Improve Article Tags : Web Technologies CSS Primer-CSS Primer-CSS Utilities Similar Reads Primer CSS Fade down Animation Primer CSS animations are used to make the web page more interesting and to improve the user experience. In this article, we will be seeing Primer CSS fade down Animation. This animation is used to slide down an element hiding it. This animation should be used on a container with its overflow proper 2 min read Primer CSS Fade in Animation Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are steady and interoperable with every other. Its approach to CSS is influenced by 2 min read Primer CSS Fade up Animation Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are steady and interoperable with every other. Its approach to CSS is influenced by 2 min read Primer CSS Fade out Animation Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are steady and interoperable with every other. Its approach to CSS is influenced by 2 min read Primer CSS Pulse Animation Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. It is highly reusable and flexible. It is created with GitHubâs design system. Animations are an important tool to attract users to 1 min read Primer CSS Toast animation in Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are steady and interoperable with every other. Its approach to CSS is influenced by 2 min read Primer CSS Scale in Animation Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are steady and interoperable with every other. Its approach to CSS is influenced by 2 min read CSS animation-name Property The animation-name property in CSS is used for defining animations. It is used to specify the name of the @keyframes that describe the animation.Understanding the Animation-Name PropertyThe animation-name property in CSS is used to connect an element to a set of keyframes. The keyframes describe the 2 min read Primer CSS Rotation Animation Primer CSS animations are generally used to get the user's attention towards the animating element and for a better user experience. In this article, we will be seeing Primer CSS Rotation Animation. To apply the rotation animation to an element, we have to add the anim-rotate class to the element. A 2 min read How to make CSS Animations ? Animation is a way using which we can create the illusion of motion by placing still images one after another in a typical format. For example, we can have a ball rising up at some instant then falling down as an animation effect. CSS provides us with some properties to control the animation effect 3 min read Like