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. });