jQuery 翻转动画通过顶部的 DIV 显示
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
虽然动画翻转框有
z-index: 9999;
,所以将叠加层的z-index
提高到 9999 以上:另请参阅更新的 示例。
While animation the flipbox has
z-index: 9999;
, so raise thez-index
of the overlay over 9999:Also see your updated example.
您不应将翻转框的
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/