help me | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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: ; }

6th May 2020, 10:50 PM
Ibrahem Abu rayyan
Ibrahem Abu rayyan - avatar
7 Answers
+ 4
.test { animation- name : sizechange; animation- duration : 5s; animation-timing-function: ease; animation- delay : 2s; animation-iteration-count: infinite ; }
11th Jun 2020, 12:01 PM
milton correa
+ 2
One line should be enough : animation: sizechange 5s ease-in 2s infinite;
6th May 2020, 10:54 PM
Arb Rahim Badsa
Arb Rahim Badsa - avatar
+ 1
Try this. working good. test { animation-name : sizechange; animation-duration : 5s; animation-timing-function: ease; animation-delay : 2s; animation-iteration-count: infinite; }
24th Apr 2021, 4:10 PM
IMTIAZ AHMAD
IMTIAZ AHMAD - avatar
+ 1
What is the delay of the following animation declaration? animation: demo 2s ease-in 1s infinite reverse; ans:1s
10th Jan 2024, 4:13 PM
Nadhiya C
0
.test { animation-name: sizechange; animation-duration: 5s; animation-timing-function: ease; animation-delay: 2s; animation-iteration-count: infinite; }
22nd May 2022, 9:09 PM
Erhan TEZER
0
What is the delay of the following animation declaration? animation: demo 2s ease-in 1s infinite reverse;
12th Oct 2023, 1:08 PM
JASWANTH SAMPATHI
JASWANTH SAMPATHI - avatar
0
Complete the declaration to define an animation named spin with a duration of 3 seconds that will repeat forever
9th Apr 2024, 5:09 PM
Nishalini Thirukkumar
Nishalini Thirukkumar - avatar