我正在尝试缓慢地为 div 的背景位置设置动画,但没有它有生涩的运动。你可以在这里看到我目前努力的结果:
@-webkit-keyframes MOVE-BG {
from {
background-position: 0% 0%
}
to {
background-position: 187% 0%
}
}
#content {
width: 100%;
height: 300px;
background: url(http://www.gstatic.com/webp/gallery/1.jpg) 0% 0% repeat;
text-align: center;
font-size: 26px;
color: #000;
-webkit-animation-name: MOVE-BG;
-webkit-animation-duration: 100s;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
}
我已经在这里工作了好几个小时,找不到任何可以在亚像素级别缓慢流畅地动画的东西。我当前的示例是根据此页面上的示例代码制作的:http: //css-tricks.com/parallax-background-css3/
在此页面的 translate() 示例中可以看到我所追求的动画的流畅度:
http://css-tricks.com/tale-of-animation-performance/
如果背景位置无法完成,有没有办法用多个 div 伪造重复背景并使用 translate 移动这些 div?