Primer CSS Pulse Animation Last Updated : 21 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 the pulse type. Pulse animation is used to light up and down the UI element continuously. Pulse Animation Used Class: .anim-pulse: Add this class to the respective element to implement pulse animation. Syntax: <div class=".anim-pulse"> ... </div> Example: This example demonstrates the use of the Primer CSS Pulse animation using the anim-pulse class. 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 Pulse Animation</u></h3><br/> </div> <div class="anim-pulse d-flex flex-justify-center"> <img src= 'https://media.geeksforgeeks.org/wp-content/uploads/20210604014825/QNHrwL2q-100x100.jpg'> </div> </body> </html> Output: Primer CSS Pulse Animation Reference: https://primer.style/css/utilities/animations#pulse Comment More infoAdvertise with us Next Article Primer CSS Pulse Animation namankedia Follow Improve Article Tags : Web Technologies CSS Primer-CSS Primer-CSS Utilities Similar Reads CSS Pulse animation CSS pulse animation is a simple and eye-catching effect that makes an element (like a button or icon) gently grow and shrink, similar to a heartbeat. It's a great way to draw attention without overwhelming the design. Around 70% of modern websites use subtle animations like pulse effects to improve 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 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 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 Grow x 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 Hover 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 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 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 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 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 Like