Complete the code to add a 500ms delay before the animation starts.
<div class="animate-bounce [1]">Hello</div>
duration-500 sets animation length, not delay.animate-delay is not a valid Tailwind class.The delay-500 class adds a 500ms delay before the animation begins.
Complete the code to add a 1 second delay before the animation starts.
<div class="animate-spin [1]">Loading</div>
delay-100 which is only 100ms delay.duration-1000 with delay.The class delay-1000 adds a 1000ms (1 second) delay before the animation starts.
Fix the error in the code to correctly add a 200ms animation delay.
<div class="animate-pulse [1]">Wait</div>
delay-20 which is 20ms, not 200ms.delay-02 which is invalid.The correct class for 200 milliseconds delay is delay-200.
Fill both blanks to create a div that spins with a 700ms delay and 2 second duration.
<div class="animate-spin [1] [2]">Loading</div>
duration-2s which is not a valid Tailwind class.delay-70 which is 70ms, not 700ms.delay-700 adds a 700ms delay, and duration-2000 sets the animation duration to 2000ms (2 seconds).
Fill all three blanks to create a pulsing animation with 300ms delay, 1.5 second duration, and infinite repeat.
<div class="animate-pulse [1] [2] [3]">Pulse</div>
repeat-infinite which is not a Tailwind class.delay-300 sets 300ms delay, duration-1500 sets 1.5 seconds duration, and infinite makes the animation repeat forever.