0

我有两个绝对定位的 DIV(上一个图像和下一个图像)。这是我的结构:

<div id="sheet" onclick="close()">
    <div id="popover">
        <div id="previous-image" onclick="previous()">&laquo;</div>
        <img src="http://cynthiawoodyardlandscapedesign.com/watermark.php?src=images/main1.jpg&x=0&y=470&opacity=50" id="popover-image" />
        <div id="next-image" onclick="next()">&raquo;</div>
    </div>
</div>

链接:http ://cynthiawoodyardlandscapedesign.com/

这是我的CSS:

#next-image {
    position: absolute;
    right: -100px;
    top: 250px;
    text-align: center;
    line-height: 50px;
    font-size: 50px;
    -webkit-text-stroke: 1px black;
    -moz-text-stroke: 1px black;
    height: 50px;
    width: 50px;
    z-index: 200;
    background: transparent;
    color: white;
}
#previous-image {
    position: absolute;
    left: -100px;
    top: 250px;
    text-align: center;
    line-height: 50px;
    z-index: 200;
    font-size: 50px;
    -webkit-text-stroke: 1px black;
    -moz-text-stroke: 1px black;
    height: 50px;
    width: 50px;
    background: transparent;
    color: white;
}

我的 JavaScript:

$("#sheet").click(function() {
    $("#sheet").animate({
        opacity: 0
    }, 200, function() {
        $("#sheet").hide();
    });
});
4

1 回答 1

1

编辑

似乎您已经省略了元素的实际 HTML ,该元素在元素#sheet上有一个display: none集合,因此所有在 sheet 元素内都是不可见的,包括箭头。

您网站上的实际 HTML 是:

<div id="sheet" onclick="close()" style="display: none;">
    <div id="popover" onclick="close()">
        <div id="previous-image" onclick="previous()">«</div>
        <img src="watermark.php?src=images/main1.jpg&amp;x=0&amp;y=420&amp;opactity=50"
        id="popover-image" onclick="close()">
        <div id="next-image" onclick="next()">»</div>
    </div>
</div>

删除style="display: none;"它将再次显示箭头。

于 2013-02-04T22:01:59.527 回答