jQuery 翻转动画通过顶部的 DIV 显示

发布于 2024-12-27 22:26:44 字数 267 浏览 0 评论 0原文

我正在使用 jquery Flip 插件来翻转 div。我有一个更大的 DIV,位于翻转的 DIV 之上。但是当 DIV 翻转时,动画会通过顶部的 DIV 显示。我不希望翻转的 DIV 通过顶部的 DIV 显示。请参阅此处的问题示例:

http://jsfiddle.net/psivadasan/4dPaX/7/

感谢任何帮助。

I'm using the jquery flip plugin to flip a div. I have a larger DIV that is atop the DIV that flips. But when the DIV flips the animation shows through the DIV on top. I don't want the DIV that flips to show through the DIV on top. See an example of the issue here:

http://jsfiddle.net/psivadasan/4dPaX/7/

Appreciate any help.

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

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

发布评论

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

评论(2

数理化全能战士 2025-01-03 22:26:45

虽然动画翻转框有 z-index: 9999;,所以将叠加层的 z-index 提高到 9999 以上:

.overlay {
    ...
    z-index: 10000;
}

另请参阅更新的 示例

While animation the flipbox has z-index: 9999;, so raise the z-index of the overlay over 9999:

.overlay {
    ...
    z-index: 10000;
}

Also see your updated example.

泪之魂 2025-01-03 22:26:45

您不应将翻转框的 z-index 属性设置为比覆盖 div 具有的值更高的值。
这是演示: http://jsfiddle.net/gion_13/4dPaX/9/

You shouldn't set the z-index property of the flip box to a higher value than the one the overlay div is having.
Here's the demo : http://jsfiddle.net/gion_13/4dPaX/9/

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