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-functionThis question was posed to me during an online interview.My question comes from Miscellaneous topic in chapter CGI Programming & Miscellaneous of CSS |
|
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. |
|