CSS Keyframes

Question 1
Marks : +2 | -2
Pass Ratio : 100%
Which of the following property specifies the number of times an animation should run?
animation-repeat
animation-count
animation-iteration-count
all of the mentioned
Explanation:
Self-explainatory.
Question 2
Marks : +2 | -2
Pass Ratio : 100%
Which of the following CSS Property sets the pace of the transition to the next keyframe, as described in the previous section?
animation-timing-function
animation-pace-function
animation-transition-function
none of the mentioned
Explanation:
Self-explainatory.
Question 3
Marks : +2 | -2
Pass Ratio : 100%
Which of the following property specifies the direction in which a marquee should move?
marquee
marquee-direction
marquee-time
none of the mentioned
Explanation:
Self-explainatory.
Question 4
Marks : +2 | -2
Pass Ratio : 100%
Which of the following CSS Property selects an animation defined in an @keyframes rule and applies it to the element?
animation
animation-name
animation-element
none of the mentioned
Explanation:
Self-explainatory.
Question 5
Marks : +2 | -2
Pass Ratio : 100%
Which of the following CSS property defines whether the animation is running or paused?
animation-pause-state
animation-state
animation-play-state
all of the mentioned
Explanation:
Self-explainatory.
Question 6
Marks : +2 | -2
Pass Ratio : 100%
Which of the following property specifies whether an element is an accelerator indicator or not?
animation
accelerator
scan
none of the mentioned
Explanation:
Self-explainatory.
Question 7
Marks : +2 | -2
Pass Ratio : 100%
Which of the following CSS Property determines whether an animation should run in reverse on some cycles?
animation
animation-run
animation-repeat
none of the mentioned
Explanation:
animation-direction : Determines whether an animation should run in reverse on some cycles.
Question 8
Marks : +2 | -2
Pass Ratio : 100%
Which of the following CSS Property defines which property values to apply to the element before the animation begins (if delayed) and after it ends?
animation-play
animation-delay
animation-fill-mode
animation-play-state
Explanation:
Self-explainatory.
Question 9
Marks : +2 | -2
Pass Ratio : 100%
Which of the following property defines when the animation will start. It allows an animation to begin execution some time after it is applied?
animation-stop
animation-delay
animation-start
animation-control
Explanation:
Self-explainatory.
Question 10
Marks : +2 | -2
Pass Ratio : 100%
@keyframes rule is used to define the properties that will control the audio/video formats. State true or false.
True
False
Explanation:
@keyframes rule is used to define the properties that will be animated in an animation rule.