이 글은 JavaScript(코드)의 카운트다운 원리와 예를 소개합니다. 도움이 필요한 친구들이 참고할 수 있기를 바랍니다.
카운트다운 원리: 미래 시점 - 현재 시점 // 현재 시점(변경) var iNow = new Date();
// 미래 시점(변경되지 않음)
//下面两种方法都可以定义未来的时间点 // var iNew = new Date( 2013, 10, 27, 21,56,0 ); var iNew = new Date( 'November 27,2013 22:3:0' ); // 数字形式:new Date( 2013,4,1,9,48,12 ); // 字符串形式:new Date('June 10,2013 12:12:12'); // January、February、March、April、May、June、 // July、August、September、October、November、December
var t = Math .floor((iNew - iNow)/1000); 밀리초를 초로 변환하려면 소수가 나타날 수 있으므로 정수로 내림하세요
// Day: Math.floor(t/86400) 미래 시간과 현재의 차이 몇 일
// 시간: Math.floor(t%86400/3600) 미래 시간과 현재의 시간 차이는 몇 시간입니까
// 분: Math.floor(t%86400%3600/60) 몇 분 차이입니까? between the future time and the current
/ / 초: t%60 미래의 시간과 현재의 차이는 몇 초입니까?
카운트다운 예시:
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>无标题文档</title> <style> .t1 { width:400px; } </style> <script> /* var t = Math.floor( new Date().getTime()/1000 ); alert( Math.floor(t/86400)+'天'+Math.floor(t%86400/3600)+'时'+Math.floor(t%86400%3600/60)+'分'+t%60+'秒' ); */ window.onload = function () { var aInp = document.getElementsByTagName('input'); var iNow = null; var iNew = null; var t = 0; var str = ''; var timer = null; aInp[2].onclick = function () { iNew = new Date(aInp[0].value); clearInterval( timer ); timer = setInterval (function (){ iNow = new Date(); t = Math.floor( ( iNew - iNow ) / 1000 ); if ( t >= 0 ) { str = Math.floor(t/86400)+'天'+Math.floor(t%86400/3600)+'时'+Math.floor(t%86400%3600/60)+'分'+t%60+'秒'; aInp[1].value = str; } else { clearInterval( timer ); } }, 1000); }; }; </script> </head> <body> 距离:<input class="t1" type="text" value="November 27,2013 22:3:0" /><br /> 还剩:<input class="t1" type="text" /> <input type="button" value="开始倒计时吧" /> </body> </html>
관련 추천:
JS에서 구현한 카운트다운 효과 예시(2 예제)_javascript Skills
js에서 구현한 카운트다운 버튼 예제_javascript Skills
위 내용은 자바스크립트의 카운트다운 원리와 예시 소개(코드)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!