3

任何人都可以帮助我了解如何为这个网站上的背景图像设置动画

http://breakpoint-sass.com/

在学分部分,背景图像似乎在移动,我不知道它是使用 css3 还是 jquery。

有没有关于如何做到这一点或通过使用插件的教程。

非常感谢。

4

1 回答 1

3

只是一个简单的 BG 精灵图像动画演示

http://jsbin.com/ohulok/1/edit

var c = 0 ;
function loop(){
  c = ++c%5;
  $('#bird').css({backgroundPosition: (240*c)+'px 0px'});
}
setInterval(loop, 42);

信息:如果你想要一个 24fps 的速率,那就是 ~42 (41.666ms)

http://jsbin.com/ohulok/7/edit

于 2013-02-15T02:26:06.633 回答