please help me | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

please help me

I didn't understand web storage and animation in html5 properly can anyone explain it in easy way?

19th Aug 2020, 9:31 AM
Hrithik Mishra
Hrithik Mishra - avatar
4 Answers
+ 1
for css animations use @keyframes rule in this format @keyframes my-animation{ percentage{ property : value; } percentage2{ property2 : value2; } } example : @keyframes move{ 50%{ transform : translateX(100px); } 75%{ transform : translateX(100px) translateY(100px); } 100%{ transform : translateX(0px) translateY(100px); } } then use animation-name property for what animation do you want to play and animation-duration property for the animation duration
19th Aug 2020, 4:55 PM
ΣΤΕΛΙΟΣ ΚΑΦΑΣ
ΣΤΕΛΙΟΣ ΚΑΦΑΣ - avatar
+ 1
thank uu sir
20th Aug 2020, 6:08 PM
Hrithik Mishra
Hrithik Mishra - avatar
+ 1
u exaplained nicely
20th Aug 2020, 6:08 PM
Hrithik Mishra
Hrithik Mishra - avatar
+ 1
I understand
20th Aug 2020, 6:08 PM
Hrithik Mishra
Hrithik Mishra - avatar