ボックスアニメーションを作成しようとしています。正常に動作していますが、緑色のボックスのアニメーションを左に移動したいと思います。英語が下手でごめんなさい。
コード
jQuery(document).ready(function() {
$(".iphone").mouseover(function(){ $('#appstore').stop().animate({width:'276px'},{queue:false, duration:600,}) }); $(".iphone").mouseout(function(){ $('#appstore').stop().animate({width:'128px'},{queue:false, duration:600,}) }); }); $(".android").mouseover(function(){ $('#play').stop().animate({width:'276px'},{queue:false, duration:600,}) }); $(".android").mouseout(function(){ $('#play').stop().animate({width:'128px'},{queue:false, duration:600,}) });
ありがとう ;)