我正在使用jQuery Lighbox 2(plugin page)的画廊中工作。我有一个问题,当选择图像(see example here)时,导航条目也可见。对于导航,我使用css菜单。有人可以告诉我,选择图片时如何使实体不可见吗?
最佳答案
在文件lightbox.css中将z-index
设置为5000。
例:
#lightbox {
left:0;
line-height:0;
position:absolute;
text-align:center;
width:100%;
z-index:5000; /* move the lightbox above all other elements */
}
关于jquery - jQuery Lightbox 2插件问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1561328/