Jquery点击按钮 同时移动2个div,请问怎样点击同一个按钮 div返回原来位置? 代码如下
$("#gen").click(function(){$("#general").animate({left:"-600px"},"slow");$("#project"...
$("#gen").click(function(){
$("#general").animate({left:"-600px"},"slow");
$("#project").animate({left:"220px"},"slow");
});
以上是点击id=gen 移动general和project
我想再次点击gen general和project移动原来位置(分别是0px和-220px)
如果用each 应该怎样写咧?? 谢谢吖 展开
$("#general").animate({left:"-600px"},"slow");
$("#project").animate({left:"220px"},"slow");
});
以上是点击id=gen 移动general和project
我想再次点击gen general和project移动原来位置(分别是0px和-220px)
如果用each 应该怎样写咧?? 谢谢吖 展开
展开全部
$("#gen").toggle.(function(){
$("#general").animate({left:"-600px"},"slow");
$("#project").animate({left:"220px"},"slow");
},function(){
$("#general").animate({left:"0px"},"slow");
$("#project").animate({left:"-220px"},"slow");
});
$("#general").animate({left:"-600px"},"slow");
$("#project").animate({left:"220px"},"slow");
},function(){
$("#general").animate({left:"0px"},"slow");
$("#project").animate({left:"-220px"},"slow");
});
追问
貌似没有反应 我代码如下:
$(document).ready(function(){
$("#gen").click(function(){
$("#gen").toggle.(function(){
$("#general").animate({left:"-600px"},"slow");
$("#project").animate({left:"220px"},"slow");
},function(){
$("#general").animate({left:"0px"},"slow");
$("#project").animate({left:"-220px"},"slow");
});
});
});
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询