css中animation小例子
时间: 2023-10-13 08:21:56 浏览: 94
css例子
4星 · 用户满意度95%
Sure, I can help you with a CSS animation example. Here is an example of animating a div's background color:
```css
div {
width: 100px;
height: 100px;
background-color: red;
animation: change-color 2s infinite;
}
@keyframes change-color {
0% {
background-color: red;
}
50% {
background-color: blue;
}
100% {
background-color: green;
}
}
```
This will animate the background color of the div from red to blue to green and repeat indefinitely.
阅读全文