Which line of code specifies playing an animation with the same speed from beginning to the end?
Options:
Explanation:
We use the
animation- timing- function property to define the time an animation uses to change from one set of CSS styles to another. When we set its value to linear, the animation will have the same speed from start to end.
Tags:
CSS
Answer:
Which line of code specifies playing an animation with the same speed from beginning to the end div {animation- timing function: linear;}.