用JavaScript+CSS实现的超级简单的时钟

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        *{
            padding: 0;
            margin: 0;
        }
        .clock
        {
            width: 300px;
            height: 300px;
            border: 10px solid #ccc;
            border-radius: 50%;
            margin: 100px auto;
            position: relative;
            
            
        }
        .line
        {
            position: absolute;
            width: 8px;
            background-color: #ccc;
            height: 300px;
            left: 50%;
            top: 0%;
            transform: translate(-50%,0%);
        }
        
        .line2
        {
            /* 因为tranform会覆盖掉以前的transform 所以要把以前的写上 */
            transform:translate(-50%,0%) rotate(30deg);
        }
        .line3
        {
            transform:translate(-50%,0%) rotate(60deg);
        }
        .line4
        {
            transform:translate(-50%,0%) rotate(90deg);
        }
        .line5
        {
            transform:translate(-50%,0%) rotate(120deg);
        }
        .line6
        {
            transform:translate(-50%,0%) rotate(150deg);
        }
        .cover{
            width: 250px;
            height: 250px;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            background-color: #ffffff;
        }
        .hour{
            width: 6px;
            height: 80px;
            background-color: red;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-100%);
            transform-origin: center bottom;
            /*animation: myClock 43200s linear infinite;*/
        }
        .second{
            width: 2px;
            height: 100px;
            background-color: aqua;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-100%);
            /* 匀速转 */
           /* animation: myClock 60s linear infinite;
             转60次 
            animation-timing-function: steps(60);*/
            transform-origin: center bottom;
            
            
        }
        .minute{
            width: 4px;
            height: 90px;
            background-color: green;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-100%);
           
            transform-origin: center bottom;
           /* animation: myClock 3600s linear infinite;*/

        }
        .center{
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: #cccccc;
            border-radius: 50%;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-50%);
        }
        @keyframes myClock{
            0%{
                transform: translate(-50%,-100%) rotate(0deg);
            }
            100%{
                transform: translate(-50%,-100%) rotate(360deg);
            }
        }
    </style>
</head>
<body>
    <div class="clock">
        <div class="line line1"></div>
        <div class="line line2"></div>
        <div class="line line3"></div>
        <div class="line line4"></div>
        <div class="line line5"></div>
        <div class="line line6"></div>
        <div class="cover"></div>
        <div class="hour"></div>
        <div class="minute"></div>
        <div class="second"></div>
        <div class="center"></div>
    </div>
</body>
<script>
    var hour=document.querySelector(".hour")
    var minute=document.querySelector(".minute")
    var second=document.querySelector(".second")
    function setTime(){
        var nowdate = new Date();
        //获取年月日时分秒
        var year = nowdate.getFullYear(),
            month = nowdate.getMonth()+1,
            day = nowdate.getDay(),
            hours = nowdate.getHours(),
            minutes = nowdate.getMinutes(),
            seconds = nowdate.getSeconds(),
            date = nowdate.getDate();
            console.log(hours);
            console.log(minutes);
            console.log(seconds);
        var hour_rotate=0
        if(hours>=12)
        {
            hour_rotate=(hours-12)*30+Math.floor(minutes/2)
        }
        else
        {
            hour_rotate=hours*30+Math.floor(minutes/2)
        }
        hour.style.transform = 'translate(-50%,-100%) rotate(' + hour_rotate + 'deg)';
        minute.style.transform = 'translate(-50%,-100%)  rotate(' + (minutes*6 ) + 'deg)';
        second.style.transform = 'translate(-50%,-100%)  rotate(' + (seconds*6)+'deg)';
        
    }
    setInterval(setTime, 1000);
    
    

</script>
</html>
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值