我必須在圖像上方箭頭才能導航到上一個或下一個圖像。箭頭的div沒有背景色。當我點擊該框時,會顯示警報。這在整個div中是可能的。 當使用箭頭在div下顯示圖像時,該點擊在Internet Explorer中不起作用,但可在Firefox和Chrome中使用。用戶不能導航到下一個或上一個圖像。當您給箭頭背景顏色的框時,它確實有效,但您將無法看到圖像。jquery點擊透明div不工作
有人可以幫我嗎?下面是一個工作很快的示例項目。
謝謝!
<div id="photoViewer">
<div id="photoViewerDialog" class="photoViewerWindow">
<div id="photoViewerImageCon">
<img src="../../Content/ShowImage.jpg" class="image" alt="photo" />
<div id="navigationBar">
<div id="navigationLeft"><span><</span></div>
<div id="navigationRight"><span>></span></div>
</div>
</div>
</div>
<div id="photoViewerMask"></div>
</div>
<script type="text/javascript">
$(document).ready(function() {
//transition effect
$('#photoViewerMask').fadeIn();
$('#photoViewerMask').fadeTo("slow", 0.8);
//Get the window height and width
var winH = $(window).height();
var winW = $(window).width();
var borderSpace = 200;
var minimumSize = 520;
//Set width and height of photoviewer
if (winW > minimumSize) {
if ((winW - borderSpace) > minimumSize) {
$('#photoViewer .photoViewerWindow').css('width', winW - borderSpace);
}
else {
$('#photoViewer .photoViewerWindow').css('width', minimumSize);
}
}
if (winH > minimumSize) {
if ((winH - borderSpace) > minimumSize) {
$('#photoViewer .photoViewerWindow').css('height', winH - borderSpace);
}
else {
$('#photoViewer .photoViewerWindow').css('height', minimumSize);
}
}
var photoViewerWindow = $('#photoViewer .photoViewerWindow');
var imageCon = $('#photoViewer .photoViewerWindow #photoViewerImageCon');
var infoCon = $('#photoViewer .photoViewerWindow #photoViewerInfoCon');
var infoHeader = $('#photoViewer .photoViewerWindow #photoViewerInfoCon #photoViewerInfoHeader');
var InfoThumbs = $('#photoViewer .photoViewerWindow #photoViewerInfoCon #photoViewerInfoThumbs');
//Set width and line-height of photo to show
$(imageCon).width($(photoViewerWindow).width() - $(infoCon).width());
$(imageCon).css('line-height', $(photoViewerWindow).height() + 'px');
//Set the popup window to center
$('#photoViewerDialog').css('top', winH/2 - $('#photoViewerDialog').height()/2);
$('#photoViewerDialog').css('left', winW/2 - $('#photoViewerDialog').width()/2);
//transition effect
$('#photoViewerDialog').fadeIn();
});
$('#navigationLeft').click(function() {
alert('left');
});
$('#navigationRight').click(function() {
alert('right');
});
</script>
CSS
#photoViewerMask {
position:absolute;
z-index:9000;
background-color:#000000;
top: 0;
width: 100%;
height: 100%;
}
#photoViewer .photoViewerWindow {
position:fixed;
min-width:520px;
min-height:520px;
max-height: 2048px;
z-index:9001;
}
#photoViewer .photoViewerWindow #photoViewerImageCon {
display: block;
float: left;
height: 100%;
max-height: 2048px;
position: relative;
z-index: 9003;
text-align: center;
background-color: Black;
}
#photoViewer .photoViewerWindow #photoViewerImageCon .image {
vertical-align: middle;
z-index: 9003;
}
#photoViewer .photoViewerWindow #photoViewerImageCon #navigationBar {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#photoViewer .photoViewerWindow #photoViewerImageCon #navigationLeft,
#photoViewer .photoViewerWindow #photoViewerImageCon #navigationRight {
color: rgb(255, 255, 255);
color: rgba(255, 255, 255, 0.5);
font-weight: bold;
font-size: 4em;
position: absolute;
z-index: 9910;
top: 0;
height: 100%;
cursor: pointer;
}
#photoViewer .photoViewerWindow #photoViewerImageCon #navigationLeft:hover,
#photoViewer .photoViewerWindow #photoViewerImageCon #navigationRight:hover {
color: rgb(255, 255, 255);
}
#photoViewer .photoViewerWindow #photoViewerImageCon #navigationLeft
{
/*background-color:Aqua;*/
width: 20%;
left: 0px;
}
#photoViewer .photoViewerWindow #photoViewerImageCon #navigationLeft span
{
position: absolute;
left: 20px;
}
#photoViewer .photoViewerWindow #photoViewerImageCon #navigationRight
{
/*background-color:Fuchsia;*/
width: 80%;
right: 0px;
}
#photoViewer .photoViewerWindow #photoViewerImageCon #navigationRight span
{
position: absolute;
right: 20px;
}
它爲我工作http://jsfiddle.net/wKGpS/,你確定你沒有用箭頭在div上添加圖片嗎? –
哪個版本的IE瀏覽器打破了?我在你的代碼中創建了一個小提琴,它在IE8和IE9中工作:http://jsfiddle.net/z2va9/1/ – Chris
對於它的價值,我也嘗試過在IE7和兼容模式下的IE8,它仍然作品。 – Chris