我正在尝试制作一个盒子动画。它工作正常,但我想将绿框动画移到左边。对不起我的英语不好。
代码
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,}) });
谢谢 ;)