【发布时间】:2011-07-18 16:58:41
【问题描述】:
我在这里使用jQuery cycle plugin:http://www.mitchsflowers.dreamhosters.com/
幻灯片位于相对定位的 div 中,它包含一个绝对定位的 div 来保存标题。这个 div 位于自行车图像上方,但无论我给标题 div 提供什么 z-index,图像都会隐藏它。
有没有办法让我的标题 div 高于循环图像?
#homeslides {
margin:0 auto;
width:985px;
height:420px;
overflow:hidden;
position:relative;
padding-top:12px;
}
#homeslideCaptions {
position:absolute;
bottom:0;
width:907px;
height:57px;
z-index:2000000;
background:rgba(0,0,0,0.5);
}
【问题讨论】:
标签: jquery-plugins z-index cycle