Complete the code to set the animation duration to 2 seconds.
animation-duration: [1];The animation-duration property sets how long the animation takes to complete one cycle. Using 2s means 2 seconds.
Complete the code to delay the animation start by half a second.
animation-delay: [1];The animation-delay property sets how long to wait before starting the animation. 0.5s means half a second delay.
Fix the error in the animation duration value to make it valid.
animation-duration: [1];The correct unit for seconds in CSS animation duration is s. So 3s is valid. Other options are invalid units or missing units.
Fill both blanks to set animation duration to 4 seconds and delay to 1 second.
animation-duration: [1]; animation-delay: [2];
Set animation-duration to 4s for 4 seconds duration and animation-delay to 1s for 1 second delay.
Fill all three blanks to create a CSS animation shorthand with name 'slide', duration 3 seconds, and delay 0.7 seconds.
animation: [1] [2] ease-in-out [3] forwards;
The shorthand animation property includes the animation name, duration, timing function, delay, and fill mode. Here, name is slide, duration 3s, delay 0.7s.