Which CSS property is used to specify the timing curve for the acceleration and deceleration of a keyframe animation?
A). <div>animation-duration
B). <div>animation-timing-function
C). <div>animation-iteration-count
D). <div>animation-direction
How can developers create a continuous looping animation using keyframes?
A). <div>By setting the animation-duration property.
B). <div>By using the animation-name property.
C). <div>By specifying the timing function of the animation.
D). <div>By using the animation-iteration-count property with the value 'infinite'.
What is the role of the animation-play-state property in controlling keyframe animations?
A). <div>It defines the timing curve for the animation's acceleration/deceleration.
B). <div>It specifies whether the animation should be paused or running.
C). <div>It controls the direction of the animation.
D). <div>It defines how the element's styles should be applied before and after the animation.
How does the animation-delay property impact the timing of a keyframe animation?
A). <div>It specifies the total duration of the animation.
B). <div>It controls when the animation starts after being triggered.
C). <div>It defines the starting and ending states of the animation.
D). <div>It changes the direction of the animation.
How does specifying the easing function impact the appearance of a keyframe animation?
A). <div>It controls the direction of the animation.
B). <div>It defines the starting and ending states of the animation.
C). <div>It changes the duration of the animation.
D). <div>It controls the acceleration/deceleration of the animation.
What do keyframes specify in a keyframe animation?
A). <div>The total duration of the animation.
B). <div>The starting and ending states of the animation.
C). <div>The easing function for the animation.
D). <div>The style changes at different points of the animation.
What does the animation-direction property in CSS keyframe animations determine?
A). <div>The total duration of the animation.
B). <div>The starting and ending states of the animation.
C). <div>The direction of the animation (forwards, backwards, etc.).
D). <div>The easing function for the animation.
How does the animation-fill-mode property impact the appearance of elements before and after a keyframe animation?
A). <div>It defines the starting and ending states of the animation.
B). <div>It specifies the number of times the animation should repeat.
C). <div>It controls the direction of the animation.
D). <div>It defines how the element's styles should be applied before and after the animation.
What is the purpose of defining multiple keyframes in a keyframe animation?
A). <div>To reduce the complexity of the animation.
B). <div>To specify the total duration of the animation.
C). <div>To control the direction of the animation.
D). <div>To create varied style changes and movements at different stages of the animation.
How can developers optimize the performance of keyframe animations?
A). <div>By adding multiple simultaneous animations.
B). <div>By using heavy images and video backgrounds.
C). <div>By avoiding excessive animations and optimizing code.
D). <div>By removing all transitions from the website.