animation-name
时间: 2023-10-04 21:06:04 浏览: 95
animation-101-source
`animation-name` 是 CSS3 动画属性之一,它定义动画的名称,用于绑定关键帧动画。例如:
```css
@keyframes move {
from {transform: translateX(0);}
to {transform: translateX(100px);}
}
.box {
animation-name: move;
animation-duration: 2s;
animation-iteration-count: infinite;
animation-direction: alternate;
}
```
上述代码中,我们定义了一个关键帧动画 `move`,并将其绑定到 `.box` 元素上。当 `.box` 元素被加载时,动画就会自动播放。
阅读全文