0
please help me
I didn't understand web storage and animation in html5 properly can anyone explain it in easy way?
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
+ 1
thank uu sir
+ 1
u exaplained nicely
+ 1
I understand