3

jQuery ツールのスクロール可能な画像ギャラリーの上に div 要素を配置しようとしています。すべてを正しい方法で配置しましたが、z-index を設定しても div が jQuery オブジェクトの上に表示されません: 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;
}
4

2 に答える 2

3

ラッパー div を絶対に配置できますか? もしそうなら、それは適切な z-index とともにそれを処理する必要があります。

配置例はこちらをご覧ください。

于 2011-11-08T23:55:31.700 に答える
0

をご覧くださいjQuery.toggle()

于 2011-11-08T23:18:17.027 に答える