如何减慢此动画的速度并使所有浏览器更流畅?有什么办法吗?
@keyframes animatedBackground { 来自{ background-position:0 0; } 至 { …
简单地给出 animation 持续时间更长。
animation
以下内容对其进行了更改 10s 至 30s :
10s
30s
@keyframes animatedBackground { from { background-position: 0 0; } to { background-position: 100% 0; } } #animate-area { width: 200px; height: 200px; background-image: url(https://github.githubassets.com/images/modules/open_graph/github-mark.png); background-position: 0px 0px; background-repeat: repeat-x; animation: animatedBackground 30s linear infinite alternate; }
<div id="animate-area"></div>