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.
ボタンをクリックするたびに左に 800 ピクセル移動したい要素があります。
次のコードを書いたのですが、クリックするたびにではなく、要素を一度左に移動するだけです。誰かが正しい方法を提案できますか?
$('.hero-nav li.prev a').click(function(){ $('.hero-carousel').animate({'margin-left':'-640px'}, 1000); });
重要なキャラクターが 1 人欠けています....
$('.hero-nav li.prev a').click(function(){ $('.hero-carousel').animate({'margin-left':'-=800px'}, 1000); });
= 記号は、相対的に移動します。なくても全然動いていました。