一句话知识点: 关于CSS3的animation中的"keyframes".
程序员文章站
2022-04-05 15:21:24
...
在animation的"keyframes"里, 每一帧不会默认继承前一帧的属性, 所以:
不等于
.
@-webkit-keyframes test {
0% { left: 50px; top: 100px; }
100% { left: 200px; }
}
不等于
@-webkit-keyframes test {
0% { left: 50px; top: 100px; }
100% { left: 200px; top: 100px; }
}
.