注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的更改的影响。
@keyframes moveRight { from { transform: translateX(-200px); } to { transform: translateX(110vw); } } .moving-image-random { position: fixed; z-index: 9999; animation: moveRight linear forwards; width: 100px; }