시간되기전에는<div class="001">출력하고 시간되면은 <div class="002">를 나타나게 하고 싶습니다.
본문
시간되기전에는<div class="001">출력하고 시간되면은 <div class="002">를 나타나게 하고 싶습니다.
<SCRIPT type="text/javascript">
var maxtime = 1 * 60;
function CountDown() {
if (maxtime >= 0) {
minutes = Math.floor(maxtime / 60);
seconds = Math.floor(maxtime % 60);
msg = "" + minutes + "분 " + seconds + "초";
document.all["timer"].innerHTML = msg;
--maxtime;
} else{
clearInterval(timer);
}
}
timer = setInterval("CountDown()", 1000);
</SCRIPT>
<div class="001">
<div id="timer" style="color:000;"></div>
</div>
<div class="002">
기다려주셔서 감사 합니다.
</div>
답변 1
<SCRIPT type="text/javascript">
var maxtime = 1 * 60;
function CountDown() {
if (maxtime >= 0) {
minutes = Math.floor(maxtime / 60);
seconds = Math.floor(maxtime % 60);
msg = "" + minutes + "분 " + seconds + "초";
document.all["timer"].innerHTML = msg;
--maxtime;
} else{
document.getElementById("001").style.display="none";
document.getElementById("002").style.display="block";
clearInterval(timer);
}
}
timer = setInterval("CountDown()", 1000);
</SCRIPT>
<div id="001" class="001">
<div id="timer" style="color:#000;"></div>
</div>
<div id="002" class="002" style="display:none;">
기다려주셔서 감사 합니다.
</div>
답변을 작성하시기 전에 로그인 해주세요.