在 jQuery 中,你能在不丢失元素空间的情况下 fadeOut() 吗? (不可见与显示:无)
因为我需要 fadeIn() 另一个相同大小的元素返回,有没有一种方法可以 fadeOut() 元素以便保留空间,以便其他元素不会瞬间重新流动,然后fadeIn() 会带回另一个具有相同大小的元素吗?
Because I need to fadeIn() another element of the same size back in, is there a way to fadeOut() the element so that the space is kept, so that the other elements are not re-flowed for a split second and then the fadeIn() will bring back another element with the same size?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我想到了两种技术:
Two techniques come to mind:
我的建议是你用 div 包裹它...并在该 div 上放置相同的尺寸...
my suggestion is you wrap it with div... and put the same dimension on that div...
将要淡入淡出的元素保留在固定的
内,然后如果您隐藏其中的元素,它将完全不影响布局。
Keep the element you want to fade inside a fixed
<div style="display:block;width:300px;height:200px;">
, then if you hide the element inside it, it will not affect the layout at all.我已经自己修复了。在运行 fadeOut 之前,我运行此函数:
例如:
I have made my own fix. Before I run the fadeOut, I run this function:
So for instance: