-1

我想知道,如何创建一个水平移动的 div。

例如: http ://usbek-et-rica.fr

是否有许多通过 .animate() 函数移动的准备好的 div?我想了解它是如何工作的。

多谢你们。

4

1 回答 1

1

animate函数只是不断地改变 css 值。

$('#your-div').animate({
    left: '+=500', // move 500px to the right
}, 5000, function() {
// Animation complete.
});
于 2013-07-21T22:00:25.023 回答