jQuery 如何切换动画?
您好,我正在努力将 DIV 滑到左侧(离开页面)。 ...
我有以下有效的方法:
$('.mybigbox').live('click', function() {
leftDistance = $(this).attr('name'); // set px so I know how far
$lefty.animate({left:leftDistance}) // Makes the slide
});
我想要发生的事情是,第一次单击时它会使用上面的动画,但在下一次单击时它会返回默认值。 (有点像开关,开关按钮。
想法?谢谢
Hello I'm working to slide a DIV to the left (off the page). ...
I have the following which works:
$('.mybigbox').live('click', function() {
leftDistance = $(this).attr('name'); // set px so I know how far
$lefty.animate({left:leftDistance}) // Makes the slide
});
What what I want to happen, is on the first click it animates with the above, but on the next click it returns to default. (kind of like a toggle, on off button.
Ideas? thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在此处查看演示
如果我理解正确,请尝试以下操作:
See Demo Here
If I understand you correctly, try this:
像这样的东西
Something like