用html实现一个移动动画
以下是一个简单的移动动画示例,使用HTML和CSS实现:
<!DOCTYPE html>
<html>
<head>
<title>移动动画示例</title>
<style>
#box {
width: 50px;
height: 50px;
background-color: red;
position: relative;
animation-name: move;
animation-duration: 2s;
animation-iteration-count: infinite;
animation-direction: alternate;
}
@keyframes move {
from {left: 0;}
to {left: 200px;}
}
</style>
</head>
<body>
<div id="box"></div>
</body>
</html>
在这个示例中,我们创建了一个红色的正方形div元素,并将其位置设为相对定位。我们还定义了一个名为move的动画,使div元素沿着水平方向从左到右移动。我们使用animation-name属性指定动画名称,animation-duration属性指定动画持续时间,animation-iteration-count属性指定动画重复次数,animation-direction属性指定动画的播放方向。最终结果是一个永久循环的移动动画。
原文地址: https://www.cveoy.top/t/topic/baMF 著作权归作者所有。请勿转载和采集!