Embed presentation
Download as PDF, PPTX




![!
Animation Property Shorthand
!
animation: [animation-name] [animation-duration]
[animation-timing-function] [animation-delay]
[animation-iteration-count] [animation-direction]
[animation-fill-mode] [animation-play-state];
For multiple animations
!
.div {
animation: slideIn 2s, rotate 1.75s;
}](https://image.slidesharecdn.com/ombulabs-cssanimation-160105211358/75/CSS3-Animations-5-2048.jpg)



CSS3 allows HTML elements to be animated without JavaScript or Flash. Keyframes are used to define the stages and styles of an animation over its duration. CSS properties like animation-name, animation-duration, and animation-timing-function can be used to control animations, and animations can be defined using a shorthand animation property. Browser support for CSS animations varies.




![!
Animation Property Shorthand
!
animation: [animation-name] [animation-duration]
[animation-timing-function] [animation-delay]
[animation-iteration-count] [animation-direction]
[animation-fill-mode] [animation-play-state];
For multiple animations
!
.div {
animation: slideIn 2s, rotate 1.75s;
}](https://image.slidesharecdn.com/ombulabs-cssanimation-160105211358/75/CSS3-Animations-5-2048.jpg)


