标签: javascript jquery html5 css3
我想知道,如何创建一个水平移动的div。
对于前: http://usbek-et-rica.fr
是否有许多prepered div通过.animate()函数移动? 我想了解它是如何运作的。
谢谢你们。
答案 0 :(得分:1)
animate函数只是不断改变css值。
animate
$('#your-div').animate({ left: '+=500', // move 500px to the right }, 5000, function() { // Animation complete. });