[TOP]
[PR]
リアルタイムカウントダウン
⇒タグ作成機で作成
■サンプル(日数なし)
明日まであと
秒
<span id="cntdown1"></span><script type="text/javascript"><!-- function cntdown1(){var d=new Date,t=new Date(カウントダウン先の西暦,カウントダウン先の月-1,カウントダウン先の日,カウントダウン先の時,カウントダウン先の分,カウントダウン先の秒);document.getElementById("cntdown1").innerHTML=Math.floor(Math.max(t.getTime()-d.getTime(),0)/1000);}cntdown1();setInterval(cntdown1,1000);//--></script>
■サンプル(日数あり)
来年まであと
日と
秒
<span id="cntdown2_day"></span>日と<span id="cntdown2_sec"></span>秒<script type="text/javascript"><!-- function cntdown2(){var d=new Date,t=new Date(カウントダウン先の西暦,カウントダウン先の月-1,カウントダウン先の日,カウントダウン先の時,カウントダウン先の分,カウントダウン先の秒);var n=Math.max(t.getTime()-d.getTime(),0)/1000;document.getElementById("cntdown2_day").innerHTML=Math.floor(n/86400);document.getElementById("cntdown2_sec").innerHTML=Math.floor(n%86400);}cntdown2();setInterval(cntdown2,1000);//--></script>
戻る