When to Use CSS Animation
CSS animation is fairly simple — it allows HTML elements to be animated without JavaScript or Flash. These animations run pretty smoothly when implemented correctly. That’s because the Internet browser controls the animation — this way it can optimize performance. CSS animation is great for simple animations, and you don’t need to learn an entirely new code to do it. They don’t provide as much flexibility as JavaScript, but there are other benefits. Here are some examples of when to use CSS animation.
Use CSS Animation for Loading Screens
Loading screens are simple enough. While hopefully your website doesn’t need to have one, if it takes more than 3 seconds for a page to load, you should include one. This way, users will know that something is happening. A loading animation can be simple: a circle spinning, a ball bouncing, an hourglass spilling sand, etc. It’s a great time to implement a simple CSS animation on your website.
Use CSS Animation for Secondary Actions
This can help bring your website to life. You might have a primary animation — like a video or parallax scrolling — but secondary animations give your site some extra flair. This could be something like a hover animation, or a slide-in animation, or another sort of transition declared in CSS. You can also use CSS animation alongside JavaScript if you want to manipulate the animation a bit more.
Use CSS Animation for Buttons
CSS animation is a good solution if you want to animate buttons on your website. For example, you could have a hover animation, where the button changes color. Or you could have a grow/shrink animation, which plays continuously so users know where to click. There are other possibilities for button animation with CSS. To see some great examples, Codrops has made a couple of their own.
While you definitely cannot replace all animations on your website with CSS animation, you can sprinkle them in here and there. They’re an added bonus to attract the eyes of visitors.