我試圖在image click
的全屏幕上顯示圖像。換句話說O映像的點擊它會全屏顯示爲什麼圖像不能全屏顯示?
我想這樣,但不工作
$(".imageBlock").click(function() {
$('.imageBlock').css({'width':'100%','height':'100%','z-index':'9999'})
});
https://jsbin.com/hayalobixo/1/edit?html,css,js,output
$(function() {
var counter = 0;
$('.currentPage').text(counter+1);
$('#pre').prop('disabled', true);
$('#next').click(function() {
if (counter < 4) {
counter++;
$('.imageBlock').hide();
$('.imageBlock').eq(counter).show();
}
$('.currentPage').text(counter+1);
})
$('#pre').click(function() {
if (counter > 0) {
counter--;
$('.imageBlock').hide();
$('.imageBlock').eq(counter).show();
}
$('.currentPage').text(counter+1);
})
$('#next, #pre').click(function() {
if (counter == 0) {
$('#pre').prop('disabled', true);
} else if (counter == 4) {
$('#next').prop('disabled', true);
} else {
$('#pre').prop('disabled', false);
$('#next').prop('disabled', false);
}
})
$(".imageBlock").click(function() {
$('.imageBlock').css({'width':'100%','height':'100%','z-index':'9999'})
});
})
設定位置絕對其他明智這將需要在其中圖像被放置在容器的高度。 $( 'imageBlock ')的CSS({' 寬度 ':' 100%', '高度': '100%', 'z索引': '9999', '位置': '絕對'});。 –
** [像這樣](https://jsbin.com/bupakoyuta/1/edit?html,css,js,output)**? –
'no' https://jsbin.com/hayalobixo/1/edit?html,css,js輸出 – user944513