如何将 fadeIn 与 display=inline-block 一起使用

发布于 2024-11-23 21:01:45 字数 90 浏览 0 评论 0原文

我尝试在一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

春风十里 2024-11-30 21:01:45

如果您使用css()

$("div").fadeIn().css("display","inline-block");

If you use css()?

$("div").fadeIn().css("display","inline-block");
故事未完 2024-11-30 21:01:45

综合我上面读到的内容,这是我得到的最好的:

    $(div).css({
        opacity: 0,
        display: 'inline-block'     
    }).animate({opacity:1},600);

From a combination of what I read above, this is the best I got:

    $(div).css({
        opacity: 0,
        display: 'inline-block'     
    }).animate({opacity:1},600);
孤凫 2024-11-30 21:01:45

我建议在 inline-block 元素中放置一个额外的元素层,然后将其淡入淡出。

<div style='display:inline-block;'>
    <div id='fadmein'>....</div>
</div>

$('#fademein').fadeIn();

我知道这是额外的标记,但这可能是解决问题的最务实的解决方案。

另一种方法是使用 JQuery 的 animate() 方法来更改不透明度,而不是使用 fadeIn()。这只会改变 opacity 属性;因此 display 属性将保持不变。

I'd suggest putting an extra element layer inside the inline-block element, and fading that in instead.

<div style='display:inline-block;'>
    <div id='fadmein'>....</div>
</div>

$('#fademein').fadeIn();

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 using fadeIn(). This would only change the opacity property; so the display property would be untouched.

唠甜嗑 2024-11-30 21:01:45

根据 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文