在jQuery图像滑块上放置一个div



我试图将div元素放置在jQuery Tools可滚动图像库上。我已经把一切都放在正确的方式,但是div没有出现在jQuery对象的顶部,即使我设置z-index: 2。下面是我的代码:

div#wrapperContainer{
display: table;
overflow: hidden;
margin: -5px auto;
}
//this is the div i'm trying to put on top of the jQuery Tool
div#wrapper {
display: table-cell;
vertical-align: middle;
z-index: 2;
width: 1024px;
height: 192px;
background-color: #525252;
-moz-box-shadow: 0px -10px 50px #000; 
-webkit-box-shadow: 0px -10px 50px #000; 
        box-shadow: 0px -10px 50px #000;
}
//this is the CSS for the jQuery Tool
.scrollable {
position: relative;
overflow: hidden;
width: 940px;
height: 528px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
 -khtml-border-radius: 10px;
        border-radius: 10px;
}
.items {
width: 20000em;
clear: both;
position: absolute;
}
.items  div{
float: left;
width: 940px;
height: 528px;
}

你能绝对定位包装器div吗?如果是这样,应该会处理它,以及适当的z-index。

看看jQuery.toggle()

相关内容

  • 没有找到相关文章

最新更新