CSS Tutorial

The language for styling web pages.

CSS Animations

CSS Animations

CSS animations allow animation of most HTML elements without JavaScript. An animation lets an element gradually change from one style to another. You can change as many CSS properties as you want, as many times as you want.

Animation Properties:

  • @keyframes - Defines the animation
  • animation-name - Name of keyframe
  • animation-duration - How long
  • animation-iteration-count - infinite / number
  • animation-timing-function - ease / linear
  • animation-direction - normal / reverse / alternate

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics