• js----------数码闹钟


    效果图:

    程序代码:

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>选项卡</title>
        <style>
     </style>
        <script>
    
    window.onload=function () {
        function toDouble(num) {
            if (num<10){
                return '0'+num;
            }
            else {
                return ''+num;
            }
        }
        var oBtn=document.getElementById('btn');
    
        var  Img=document.getElementsByTagName('img');
        function update() {
         var oDate=new Date();
         var str=toDouble(oDate.getHours())+toDouble(oDate.getMinutes())+toDouble(oDate.getSeconds());
    
         for (i=0;i<Img.length;i++){
             Img[i].src='../IMG/'+str.charAt(i)+'.png';
         }
        }
        setInterval(update, 1000);//并非你开了这个定时器以后,就直接执行,而是需要先过1000毫秒,下面一行代码解决
        //先开启定时器以后手动的执行函数,就可以解决这个问题;
        update();
    }
        </script>
    </head>
    <body style="background: #990099;color: #ffff00;font-size: 50px">
    
    <img src="../IMG/0.png" alt="">
    <img src="../IMG/0.png" alt=""><img src="../IMG/0.png" alt="">
    <img src="../IMG/0.png" alt=""><img src="../IMG/0.png" alt="">
    <img src="../IMG/0.png" alt=""></body>
    </html>
  • 相关阅读:
    owe的用法
    other,others,another,the other的区别
    国内顶尖的sql dba 团队招人。
    Sqler 工具更新
    2015 年个人计划
    在没Hadoop 、GP 前提下怎么进行实时数据统计。
    201407-至今
    Sqler-Cmd
    Sqler-Monitor
    SqlCmd -Windows Cluster Model
  • 原文地址:https://www.cnblogs.com/1322957664qqcom/p/11297793.html
Copyright © 2020-2023  润新知