成人在线亚洲_国产日韩视频一区二区三区_久久久国产精品_99国内精品久久久久久久

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

js實(shí)現(xiàn)動(dòng)態(tài)時(shí)鐘

瀏覽:95日期:2024-05-19 10:44:09

本文實(shí)例為大家分享了js實(shí)現(xiàn)動(dòng)態(tài)時(shí)鐘的具體代碼,供大家參考,具體內(nèi)容如下

<!DOCTYPE html><html><head> <title>時(shí)鐘</title></head><script type='text/javascript'> function todou(n){ if(n<10){ return ’0’+n; } else { return ’’+n; } } window.onload=function(){ setInterval(function(){ var date = new Date(); var ma = document.getElementsByTagName(’img’); var str =todou(date.getHours())+todou(date.getMinutes())+todou(date.getSeconds()); for(var i=0;i<ma.length;i++){ ma[i].src=’images/’+str[i]+’.png’; } // alert(todou(date.getSeconds())); // var date = new Date(); //alert(todou(date.getSeconds())); } ,1000) }</script><body><div > <img src='http://www.piao2010.com/bcjs/images/0.png' height='90px'> <img src='http://www.piao2010.com/bcjs/images/0.png' height='90px'> 時(shí) <img src='http://www.piao2010.com/bcjs/images/0.png' height='90px'> <img src='http://www.piao2010.com/bcjs/images/0.png' height='90px'> 分 <img src='http://www.piao2010.com/bcjs/images/0.png' height='90px'> <img src='http://www.piao2010.com/bcjs/images/0.png' height='90px'> 秒</div></body></html>

示例展示:

js實(shí)現(xiàn)動(dòng)態(tài)時(shí)鐘

更多JavaScript時(shí)鐘特效點(diǎn)擊查看:JavaScript時(shí)鐘特效專(zhuān)題

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: JavaScript
相關(guān)文章: