码迷,mamicode.com
首页 > Web开发 > 详细

js 实现倒计时特效

时间:2015-02-12 14:08:00      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:js

<div id="tiao" style="width:559px; height:300px;"></div>

<!--脚本开始-->

<script language="javascript" type="text/javascript">

countDown(3);

function countDown(secs){

/* document.getElementById("tiao").style.backgroundImage="url(/tpl/Wap/default/common/xinnian/decode"+secs+".png)"; 

*/

 document.getElementById("tiao").innerHTML=secs;

 if(--secs>0)

  setTimeout("countDown("+secs+")",1000);

 }

 </script>

js 实现倒计时特效

标签:js

原文地址:http://taoyouth.blog.51cto.com/2793776/1613995

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!