帮我写一段动画前端代码
时间: 2023-05-18 08:03:08 浏览: 216
当然可以,以下是一个简单的动画前端代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>动画示例</title>
<style>
#box {
width: 100px;
height: 100px;
background-color: red;
position: relative;
animation: move 2s infinite;
}
@keyframes move {
0% {
left: 0;
}
50% {
left: 50%;
}
100% {
left: 100%;
}
}
</style>
</head>
<body>
<div id="box"></div>
</body>
</html>
```
这段代码会让一个红色的正方形在页面中从左到右移动,然后重新开始。
阅读全文