Cross Slide z-index 问题

发布于 2024-12-10 19:52:00 字数 503 浏览 0 评论 0原文

我正在使用 十字幻灯片 脚本。

问题是我无法将 div 移动到背景:幻灯片与所有其他 div 重叠。尝试更改 z-index:将 z-index 0 设置为背景 div,将 z-index:2 设置为所有其他 div。仍然没有成功。有没有办法将幻灯片应用于背景 div?

我的 css 结构看起来像这样

<body>
  <div id="bg">
  "all stuff goes here"  
   </div
</body>

#bg 的 css

#bg {
 /* Stretch background */
 position:fixed;
 top:0;
 left:0;
 height:100%;
 width:100%;
 z-index:0;
}

I'm using cross slide script.

The problem is I can't move the div to the background: slideshow overlapping all other divs. Tried to change z-index: Set z-index 0 to background div, and z-index:2 to all other divs. Still no success. Is there anyway to apply slideshow to the background div?

My css strcture looks like that

<body>
  <div id="bg">
  "all stuff goes here"  
   </div
</body>

And css for #bg

#bg {
 /* Stretch background */
 position:fixed;
 top:0;
 left:0;
 height:100%;
 width:100%;
 z-index:0;
}

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

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

发布评论

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

评论(4

老娘不死你永远是小三 2024-12-17 19:52:00

将 css 设置为:

#bg {
 /* Stretch background */
 position:fixed;
 top:0;
 left:0;
 height:100%;
 width:100%;
 z-index:0;
}

#test {
    position: relative;
    background-color: red;
    z-index:5;
    width: 120px;
    margin-top:5px;
}

并将 html 设置为:

<body>
    <div id="bg"></div>
    <div id="test">"all stuff goes here"</div>
</body>

另请参阅我的 jsfiddle

Set css to:

#bg {
 /* Stretch background */
 position:fixed;
 top:0;
 left:0;
 height:100%;
 width:100%;
 z-index:0;
}

#test {
    position: relative;
    background-color: red;
    z-index:5;
    width: 120px;
    margin-top:5px;
}

and html to:

<body>
    <div id="bg"></div>
    <div id="test">"all stuff goes here"</div>
</body>

Also see my jsfiddle.

假面具 2024-12-17 19:52:00

使用 z-index: -1 将其置于后台

Take it to the background with z-index: -1

桃扇骨 2024-12-17 19:52:00

不要将 z-index:0 或 -1 设置为“bg”id,而是将所有其他内容的 z-index 设置为 99 或更高。所以你的“背景”将位于幻灯片的后面。

instead of making z-index:0 or -1 to your "bg" id, make all other content z-index to 99 or more than that. so your "bg" will be back of your slides.

戈亓 2024-12-17 19:52:00

您是否正确遵守了堆叠上下文、定位和 z 索引的(复杂)规则?

https://developer.mozilla.org/en/Understanding_CSS_z-index/The_stacking_context

Do you observe the (complex) rules for stacking contexts, positioning, and z-index correctly?

https://developer.mozilla.org/en/Understanding_CSS_z-index/The_stacking_context

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