InterviewSolution
Saved Bookmarks
| 1. |
Which specifies the speed curve of animation?(a) animation-iteration-count(b) animation-name(c) animation-play-state(d) animation-timing-function |
|
Answer» Right option is (d) animation-timing-function The best explanation: animation-timing-function specifies the speed curve of animation, animation-play-state specifies whether the animation is running or paused, animation-name specifies the name of @keyframes animation. |
|