如何使用 JQuery 将按钮移到左侧?
我在宽度为 300px 的 div 内有一个按钮。单击按钮时,我希望按钮移动到 div 的左侧并在 1 秒内消失。
这怎么可能用 JQUery 实现呢?
谢谢,
I have a button inside a div whose width is 300px. When the button is clicked, I'd like the button move to the left side of the div and get disappeared in 1 second.
How would that be possible with JQUery?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能取决于原始位置的分配方式,但我认为以下应该有效:
JS Fiddle。
要淡出并删除按钮:
JS Fiddle。
It probably depends on how the original position is assigned, but I think the following should work:
JS Fiddle.
To fade out, and remove, the button:
JS Fiddle.
尝试将 fadeOut() 与 animate() 结合使用
try fadeOut() with combination of animate()