在网站设计中,动态效果可以增加页面的吸引力,吸引更多用户访问。今天我们来学习如何使用CSS写一个轨道动态效果。
.track { width: 200px; height: 100px; background: #ddd; position: relative; overflow: hidden; } .ball { width: 50px; height: 50px; border-radius: 50%; position: absolute; background: blue; animation: move 3s infinite; } @keyframes move { 0% { left: -50px; } 100% { left: calc(100% + 50px); } }