Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道,如何创建一个水平移动的 div。
例如: http ://usbek-et-rica.fr
是否有许多通过 .animate() 函数移动的准备好的 div?我想了解它是如何工作的。
多谢你们。
animate函数只是不断地改变 css 值。
animate
$('#your-div').animate({ left: '+=500', // move 500px to the right }, 5000, function() { // Animation complete. });