jQuery UI 动画溢出问题

发布于 2024-11-05 14:48:14 字数 990 浏览 0 评论 0原文

我有一个元素 #content 和一个位于 #content 外部的子元素 #footer。对 #content 进行动画处理时,#footer 在动画过程中不可见。我从另一个问题 这是因为动画在动画过程中将溢出设置为隐藏。然后,我将 jQuery UI (.ui-effects-wrapper) 创建的包装器的溢出设置为 overflow:visible!important;,但动画元素是动画期间在 #content 外部也可见。

所以:我需要 overflow:visible 才能看到我的 #footer 元素,但 jQuery UI 需要 overflow:hidden 来隐藏 之外的动画部分>#内容

有人可以帮忙吗?

谢谢

#content {
    position: absolute;
    width: 45em;
    height: 26em;
    top: 8em;
    left: 16em;
}

#footer {
    position: absolute;
    width: 200em;  //larger than #content, so have to play with overflow
    height: 2.375em;
    bottom: 0;
    left: -50em;
}

.ui-effects-wrapper {
    overflow: visible !important ;
}

I've got an element #content and a child element #footer positioned outside #content. When animating #content, #footer is not visible during the animation. I've understood from another question that this was because the animation set overflow to hidden during the animation. I've then set the overflow of the wrapper created by jQuery UI (.ui-effects-wrapper) to overflow: visible !important;, but then the animated element is also visible outside #content during the animation.

So: I need overflow: visible to see my #footer element, but jQuery UI needs overflow: hidden to hide the animated part outside #content.

Anybody can help?

Thanks

#content {
    position: absolute;
    width: 45em;
    height: 26em;
    top: 8em;
    left: 16em;
}

#footer {
    position: absolute;
    width: 200em;  //larger than #content, so have to play with overflow
    height: 2.375em;
    bottom: 0;
    left: -50em;
}

.ui-effects-wrapper {
    overflow: visible !important ;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

东京女 2024-11-12 14:48:14

在动画过程中,您可以更改可见性。示例:

$('#link').click(function(){
    // Do the animation

    $(this).css('overflow','visible');
});

这有帮助吗?

During the animation you can change the visibility. Example:

$('#link').click(function(){
    // Do the animation

    $(this).css('overflow','visible');
});

Would that help?

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