A我今天學了什么
1animation 動畫
1.定義動畫@keyframes
A.@keyframes myfirst
{
from {background: red;}
to {background: yellow;}
}
B.@keyframes myfirst
{
0% {background: red;}
25% {background: yellow;}
50% {background: blue;}
100% {background: green;}
}
2.使用動畫animation
div{
animation:myfirst 2s;
}
div{
animation:myfirst 2s infinite; //無限循環(huán)
}
B我掌握了什么
1
1.定義動畫@keyframes
A.@keyframes myfirst
{
from {background: red;}
to {background: yellow;}
}
B.@keyframes myfirst
{
0% {background: red;}
25% {background: yellow;}
50% {background: blue;}
100% {background: green;}
}
2.使用動畫animation
div{
animation:myfirst 2s;
}
div{
animation:myfirst 2s infinite; //無限循環(huán)
}
c我沒掌握什么
都掌握了