Primer CSS Scale in Animation Last Updated : 08 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. This systematic method makes sure our patterns are steady and interoperable with every other. Its approach to CSS is influenced by Object-Oriented CSS principles, functional CSS, and BEM architecture. It is highly reusable and flexible. It is created with GitHub’s design system. Primer CSS Animation is used to emphasize the element using the reusable classes. Primer CSS Scale in Animation is used to scale in the element using the anim-scale-in class. In this article, we will discuss the Primer CSS Scale in Animation. Primer CSS Scale in Animation Class: anim-scale-in: This class is used to scale the element in. Syntax: <div class="anim-scale-in"> ... </div> Example 1: The following code demonstrates the Primer CSS Scale in Animation. HTML <!DOCTYPE html> <html> <head> <title> Primer CSS Scale in 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> Primer CSS Scale in Animation </h3> </div> <br> <br> <div class="d-flex flex-justify-center"> <div class="anim-scale-in color-bg-success-emphasis color-fg-on-emphasis" > <h4> GeeksforGeeks </h4> </div> </div> </body> </html> Output: Primer CSS Scale in Animation Example 2: The following code demonstrates the Primer CSS Scale in Animation. HTML <!DOCTYPE html> <html> <head> <title> Primer CSS Scale in 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> Primer CSS Scale in Animation </h3> </div> <br> <br> <div class="d-flex flex-justify-center"> <div class="anim-scale-in color-bg-success-emphasis color-fg-on-emphasis" > <svg class="octicon" viewBox="0 0 15 15" width="100" height="100"> <path d="M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z" > </path> </svg> </div> </div> </body> </html> Output: Primer CSS Scale in Animation Reference: https://primer.style/css/utilities/animations#scale-in Comment More infoAdvertise with us Next Article Primer CSS Scale in Animation singh_teekam Follow Improve Article Tags : Web Technologies CSS Primer-CSS Primer-CSS Utilities Similar Reads 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 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 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 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 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 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 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 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 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 Like