what is the animation property in html and css

Solutions on MaxInterview for what is the animation property in html and css by the best coders in the world

showing results for - "what is the animation property in html and css"
Amin
12 Feb 2017
1with the help of animation properties in CSS we can control 
2how the animation will be played throughout.
3
4The animation properties in CSS are -
51) animation-duration : implies the time taken by the animation to finish.Forexample- animation-duration: 6s;  
62) animation-direction : implies the direction of the animation.Forexample- the direction in which the horse rides , the car moves , the insects crawls.
73) animation-delay: implies the time after which is the animation starts.Forexample- animation-delay: 3s; means after 3seconds the animation will start.
84) animation-iteration-count: implies how many times the animation will repeat.
95) animation-timing-function: the values can be ease,ease-in, ease-out, linear, ease-in-out.
106) animation-play-state: the values can be paused, running, initial, inherit.
117) animation-name: implies the name of the animation which is assigned by us.
128) animation-fill-mode: it specifies a style for the element when the animation is not playing.The values can be none,forwards, backwards, both, initial and inherit.
139) @keyframes: this is the most important.It specifies the different values of style in different intervals of time.The animation-name is used in @keyframes declaration.
14
15NOTE: the syntax of every single letter, numbers, punctuation mark is very important.