jQuery fadeOut() 和 fadein() 计时
我有一个简单的 jQuery 问题,请查看:http://jsfiddle.net/4Q5uQ/
如何fadeIn() fadeOut() 效果完成后的框?
I've a simple problem with jQuery, checkout this: http://jsfiddle.net/4Q5uQ/
How to fadeIn() the box after the fadeOut() effect is completed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你想要两件事:
应该位于同一个位置,这样它们就不会移动。
,然后淡入另一个
。
第一种方法可以通过将两个
包装在相对定位的
中,然后绝对定位内部
并且:
第二个只需添加
:visible
给你的fadeOut
选择器:更新的小提琴:http://jsfiddle.net/ambigously/jAP2b/< /a>
I think you want two things:
<div>
s should be in the same place so they don't move around.<div>
and then fade in the other<div>
.The first can be done by wrapping the two
<div>
s in a relatively positioned<div>
and then absolutely positioning the inner<div>
s:And:
The second is just a matter of adding
:visible
to yourfadeOut
selector:Updated fiddle: http://jsfiddle.net/ambiguous/jAP2b/
您可能需要以下代码: http://jsfiddle.net/4Q5uQ/5/
Following code may be your need: http://jsfiddle.net/4Q5uQ/5/