animation
animation-name
animation-element
none of the mentioned
Answer is Right!
Answer is Wrong!
The correct answer is: A. animation
The animation
property is used to apply an animation to an element. It takes the following syntax:
animation: <animation-name> <duration> <timing-function> <delay> <iteration-count> <direction> <fill-mode> <keyframes>;
The animation-name
property specifies
75.5c-23.5 6.3-42 24.9-48.3 48.6-11.4 42.9-11.4 132.3-11.4 132.3s0 89.4 11.4 132.3c6.3 23.7 24.8 41.5 48.3 47.8C117.2 448 288 448 288 448s170.8 0 213.4-11.5c23.5-6.3 42-24.2 48.3-47.8 11.4-42.9 11.4-132.3 11.4-132.3s0-89.4-11.4-132.3zm-317.5 213.5V175.2l142.7 81.2-142.7 81.2z"/>
Subscribe on YouTube
the name of the animation to apply. The
duration
property specifies the duration of the animation, in seconds. The
timing-function
property specifies the timing function for the animation. The
delay
property specifies the delay before the animation starts, in seconds. The
iteration-count
property specifies how many times the animation should repeat. The
direction
property specifies the direction in which the animation should play. The
fill-mode
property specifies what should happen to the element after the animation ends. The
keyframes
property specifies the keyframes for the animation.
The animation-name
property is required. The duration
, timing-function
, delay
, iteration-count
, direction
, and fill-mode
properties are all optional.
The animation-element
property is not used to select an animation defined in an @keyframes rule and apply it to the element. It is used to specify the element to which the animation should be applied.
The none of the mentioned
option is also incorrect.