定时器
setInterval(show(),1000);
setInterval(函数,每隔的时间)
数字时钟
(1)html布局,如图效果
数字时钟是由六个数字图片组成的。由于,图片的颜色是白色的,所以body的背景色是黑色的看起来比较美观
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>数码时钟</title> </head> <body style='background:black;color:white;font-size:50px;'> <img src='images/0.png'/> <img src='images/0.png'/> : <img src='images/0.png'/> <img src='images/0.png'/> : <img src='images/0.png'/> <img src='images/0.png'/> </body> </html>
假如时间:01:23,那通过改img的路径就行,然后改src
可如果是当前时间呢,那么需要获取当前的时间,获取当前时间要用日期对象
衣带渐宽终不悔,为伊消得人憔悴,憔悴半天也没用,还是努力起来人富贵
posted on 2015-06-09 17:53 zhangjingyun 阅读(121) 评论(0) 编辑 收藏 举报