0
help me
Add an animation named sizechange, which starts after 2 seconds, runs for 5 seconds, uses the ease function, and loops forever. .test { animation- : sizechange; animation- : 5s; animation-timing-function: ease; animation- : 2s; animation-iteration-count: ; }
7 Answers
+ 4
.test {
animation-
name
: sizechange;
animation-
duration
: 5s;
animation-timing-function: ease;
animation-
delay
: 2s;
animation-iteration-count:
infinite
;
}
+ 2
One line should be enough :
animation: sizechange 5s ease-in 2s infinite;
+ 1
Try this. working good.
test {
animation-name : sizechange;
animation-duration : 5s;
animation-timing-function: ease;
animation-delay : 2s;
animation-iteration-count: infinite;
}
+ 1
What is the delay of the following animation declaration?
animation: demo 2s ease-in 1s infinite reverse;
ans:1s
+ 1
Complete the declaration to define an animation named spin with a duration of 3 seconds that will repeat forever
0
.test {
animation-name: sizechange;
animation-duration: 5s;
animation-timing-function: ease;
animation-delay: 2s;
animation-iteration-count: infinite;
}
0
What is the delay of the following animation declaration?
animation: demo 2s ease-in 1s infinite
reverse;