zoukankan      html  css  js  c++  java
  • 模拟--北京标准时间

    <!DOCTYPE html>

    <html>

    <head>

    <meta charset="utf-8" />

    <title></title>

    <style type="text/css">

     

    *{

    margin: 0;

    padding: 0;

    }

    .box {

    background: url(http://img1.imgtn.bdimg.com/it/u=3134457222,3663040433&fm=21&gp=0.jpg);

    background-size: 100% 100%;

    width: 520px;

    height: 100px;

    background-color: rgb(57,139,209);

    }

    .img {

    position: relative;

    float: left;

    width: 70px;

    height: 70px;

    top: 15px;

    left: 20px;

    }

    .hour {

    height: 100px;

    position: relative;

    float: left;

    width: 230px;

    margin-left: 30px;

    line-height: 100px;

    font-weight: 500;

    }

    .min {

    display: block;

    position: absolute;

    height: 100px;

    width: 160px;

    font-size: 60px;

    color: white;

    }

    .second {

    display: block;

    position: absolute;

    width: 60px;

    height: 100px;

    left: 150px;

    top: 10px;

    font-size: 30px;

    color: white;

    text-align: center;

    }

    .date {

    position: relative;

    float: left;

    width: 175px;

    height: 100px;

    color: white;

     

    }

    .day {

    position: absolute;

    font-size: 25px;

    height: 50px;

    top: 25px;

    font-weight: 500;

    }

    .year {

    position: absolute;

    font-size: 18px;

    height: 50px;

    top: 55px;

    }

    </style>

    </head>

    <body>

    <div class="box" id="box">

    <div class="img">

    <img src="下载.png" alt="" />

    </div>

    <div class="hour">

    <span class="min">00:00</span>

    <span class="second">00</span>

    </div>

    <div class="date">

    <p class="day">星期六</p>

    <spa class="year">9999年12月31日</span>

    </div>

    </div>

     

    <script type="text/javascript">

    window.onload = function (){

    function timer(){

    //获取时间

    var today = new Date();

    var h = today.getHours();

    var m = today.getMinutes();

    var s = today.getSeconds();

     

    h<10 ? h = "0"+h : h;

    m<10 ? m = "0"+m : m;

    s<10 ? s = "0"+s : s;

    //拼接时间

    var day = document.getElementById("box").children;

    day[1].children[0].innerHTML = h+":"+m;

    day[1].children[1].innerHTML = s;

     

    //拼接星期和日期

    var arr = ["星期一","星期二","星期三","星期四","星期五","星期六","星期日"];

    day[2].children[0].innerHTML = arr[today.getDay()-1];

    day[2].children[1].innerHTML = today.getFullYear() + "年" + (today.getMonth() + 1) + "月" + today.getDate() + "日";

    }

    //开启定时器

    setInterval(timer, 1000);

     

    }

    </script>

    </body>

    </html>

  • 相关阅读:
    右上角的 那个 个数,
    i am sorry,
    搞定了,一个是重复,一个是 判断navigationcontroller里面 最后的那个类,
    ios no code signature found,
    这次逻辑通了,
    分析下现在 遇到的这个棘手的问题,
    时间 折腾我的,
    老大说 调到 4寸的 就不用适配 5了,
    应用程序生命周期,
    解决【npm ERR! Unexpected end of JSON input while parsing near '...sh_time":141072930277'】方案
  • 原文地址:https://www.cnblogs.com/z-jun/p/6009288.html
Copyright © 2011-2022 走看看