0

我在网站上使用超大幻灯片,但我在 div 中添加了纹理覆盖

 #slideshow-wrapper
{
    width: 100%;
    margin: -100px 0 0 0;
    padding: 0;
    height: 500px;
    background: url(/slideshow/img/slideshow-front-3.png) repeat;
    position: relative;
    z-index: 3;
}

这是超大的 div

 #supersized
{
    display: block;
    position: absolute;
    left: 0;
    top: -15px;
    overflow: hidden;
    z-index: 1;
    height: 500px;
    width: 100%;
}

如果我将 #slideshow-wrapper 上的 z-index 更改为 0,则链接效果很好,但是我会松开图像上的纹理。

是否有解决方法,以便链接可以在仍显示纹理覆盖的同时工作?

感谢任何帮助。

干杯

4

1 回答 1

0

您需要在纹理图像上放置一个事件侦听器并捕获鼠标坐标,然后将点击事件传递给它下面应该被点击的项目,它共享相同的坐标空间。

于 2013-01-21T06:44:21.257 回答