如何将 fadeIn 与 display=inline-block 一起使用
我尝试在一个 div 中淡入淡出,它(应该)有一个显示内联块。
似乎 fadeIn 方法仅假设 display=block。
有没有办法改变这种行为?
I try to fadeIn a div which (should) have a display inline-block.
It seems the fadeIn method assumes only display=block.
Is there a way to change that behavior?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您使用
css()
?If you use
css()
?综合我上面读到的内容,这是我得到的最好的:
From a combination of what I read above, this is the best I got:
我建议在
inline-block
元素中放置一个额外的元素层,然后将其淡入淡出。我知道这是额外的标记,但这可能是解决问题的最务实的解决方案。
另一种方法是使用 JQuery 的
animate()
方法来更改不透明度,而不是使用fadeIn()
。这只会改变opacity
属性;因此display
属性将保持不变。I'd suggest putting an extra element layer inside the
inline-block
element, and fading that in instead.I know it's extra markup, but it's probably the most pragmatic solution to the problem.
The alternative would be to use JQuery's
animate()
method to change the opacity, rather than usingfadeIn()
. This would only change theopacity
property; so thedisplay
property would be untouched.根据 jQuery 论坛中的 这个问题,建议的解决方案是更改其 ´ display´属性来
block
并使其浮动。According to this question in the jQuery Forums, the suggested solution is to change its ´display´ property to
block
and floating it.