我的問題是,我第一次看到計時器下降,但之後,它變得奇怪,最後瀏覽器崩潰。LightBox與倒計時關閉
我把這裏給我的錯誤代碼,這是一個巨大的東西,所以我不能把它都在這裏。
的JavaScript:
// display the lightbox
function lightbox(insertContent) {
// jQuery wrapper (optional, for compatibility only)
(function($) {
// add lightbox/shadow <div/>'s if not previously added
if ($('#lightbox').size() === 0) {
var theLightbox = $('<div id="lightbox"/>');
var theShadow = $('<div id="lightbox-shadow"/>');
var countDown = $('<div class="countDown"/>');
$(theShadow).click(function(e) {
closeLightbox();
});
$('body').append(theShadow);
$('body').append(theLightbox);
$('body').append(countDown);
}
// insert HTML content
if (insertContent !== null) {
$('#lightbox').html(insertContent);
$('#lightbox').corner("15px");
// ALWAYS LAST
//$('#lightbox').append(countDown);
CountDown(5);
}
// move the lightbox to the current window top + 100px
$('#lightbox').css('top', $(window).scrollTop() + 100 + 'px');
$('#lightbox-shadow').css('top', $(window).scrollTop());
$('.countDown').css('top', $(window).scrollTop() + 150 + "px");
// display the lightbox
$('#lightbox').show();
$('#lightbox-shadow').show();
$('.countDown').show();
})(jQuery); // end jQuery wrapper
}
function CountDown(tiempo) {
if (tiempo <= 0) {
clearInterval(IntervalID);
closeLightbox();
} else {
$(".countDown").html("Esta ventana se cerrará en " + tiempo + " segundos");
tiempo--;
}
var IntervalID = setInterval("CountDown(" + tiempo + ")", 1000);
}
// close the lightbox
function closeLightbox() {
// jQuery wrapper (optional, for compatibility only)
(function($) {
// hide lightbox/shadow <div/>'s
$('#lightbox').hide();
$('#lightbox-shadow').hide();
$('.countDown').hide();
// remove contents of lightbox in case a video or other content is actively playing
$('#lightbox').empty();
})(jQuery); // end jQuery wrapper
};
$(document).ready(function() {
$("#Login").click(function(event) {
event.preventDefault();
lightbox("Username Not Available");
$("#lightbox").css("color", "#FF0000");
});
});
HTML:
<input type="button" id="Login" value="Hello">
CSS:
#lightbox {
position: absolute;
width: 50%;
left: 25%;
background: #fff;
z-index: 1001;
display: none;
color: #069;
padding: 20px;
text-align: center;
font-size: 24px;
font-weight: bold;
font-variant: small-caps;
text-shadow: 1px 1px #000;
}
#lightbox-shadow {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000;
filter: alpha(opacity=90);
-moz-opacity: 0.90;
-khtml-opacity: 0.90;
opacity: 0.90;
z-index: 1000;
display: none;
}
.countDown {
position: absolute;
width: 50%;
left: 25%;
background: #fff;
z-index: 1002;
display: none;
color: #069;
padding: 20px;
text-align: center;
font-size: 18px;
font-variant: small-caps;
font-weight: normal;
margin: 10px auto;
display: none;
}
的jsfiddle:
不知道爲什麼它不適用於jsfiddle;它在我的電腦上運行良好。
你好Amith,感謝您的回答,我改變了但仍然沒有按預期工作。它第一次運行正常,但之後發瘋,我改變setTimeout setTimeout現在瀏覽器不卡住。我想我在CountDown函數中有一個錯誤。 – Archangels
很高興你找到了解決方案。我應該在第一次嘗試時注意到'CountDown'中的錯誤。無論如何,我已經更新了我的答案,並解釋了您之前的代碼出了什麼問題,以及解決問題的一個可能的解決方案。讓我知道如果這可以解決它。 –