• html5 canvas 钟表


    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>无标题文档</title>
    <style>
    body{
        background:pink;
        }
    #c1{
        background:white;
        }
    </style>
    <script>
        window.onload = function ()
        {
            var oc = document.getElementById('c1');
            var ogc = oc.getContext('2d');
            
            function toDraw()
            {
                var x = 200;
                var y = 200;
                var r = 150;
                
                ogc.clearRect(0,0,oc.width,oc.height);
                
                var aDate = new Date();
                var oHouse = aDate.getHours();
                var oMin = aDate.getMinutes();
                var oSen = aDate.getSeconds();
                
                var oHoursevalue = ( -90 + oHouse*30 + oMin/2)*Math.PI/180;
                var oMinvalue = ( -90 + oMin*6 )*Math.PI/180;
                var oSenvalue = ( -90 + oSen*6)*Math.PI/180;
                
                ogc.beginPath();
                for(var i = 0; i < 60; i++)
                {
                    ogc.moveTo(x,y);
                    ogc.arc(x,y,r,6*i*Math.PI/180,6*(i+1)*Math.PI/180,false);
                    ogc.stroke();
                }
                
                ogc.closePath();
                
                ogc.beginPath();
                ogc.fillStyle = 'white';
                ogc.moveTo(x,y);
                ogc.arc(x,y,r*19/20,0,360,false);
                ogc.fill();
                
                ogc.closePath();
                
                ogc.beginPath();
                ogc.lineWidth = 3
                for(var i = 0; i < 12; i++)
                {
                    ogc.moveTo(x,y);
                    ogc.arc(x,y,r,30*i*Math.PI/180,30*(i+1)*Math.PI/180,false);
                    ogc.stroke();
                }
                
                ogc.closePath();
                
                ogc.beginPath();
                ogc.fillStyle = 'white';
                ogc.moveTo(x,y);
                ogc.arc(x,y,r*18/20,0,360,false);
                ogc.fill();
                
                ogc.closePath();
                
                
                
                ogc.beginPath();
                ogc.lineWidth = 5
                ogc.moveTo(x,y);
                ogc.arc(x,y,r*5/20,oHoursevalue,oHoursevalue,false);
                ogc.stroke();
                ogc.closePath();
                
                ogc.beginPath();
                ogc.lineWidth = 3
                ogc.moveTo(x,y);
                ogc.arc(x,y,r*8/20,oMinvalue,oMinvalue,false);
                ogc.stroke();
                ogc.closePath();
                
                ogc.beginPath();
                ogc.lineWidth = 1
                ogc.moveTo(x,y);
                ogc.arc(x,y,r*18/20,oSenvalue,oSenvalue,false);
                ogc.stroke();
                ogc.closePath();
                
            }
            
            toDraw();
            
            setInterval(toDraw,1000);
            
        }
    </script>
    </head>
    
    <body>
    
    <canvas id="c1" width="400" height="400"></canvas>
    </body>
    </html>
  • 相关阅读:
    华为OD机试 :找终点
    华为OD机试 :磁盘容量排序
    剑指Offer-从上到下打印二叉树
    GO语言学习笔记3-int与byte类型转换
    剑指Offer-树的子结构
    LeetCode :21.合并两个有序链表
    LeetCode :206.反转链表
    剑指Offer-删除链表的结点
    剑指Offer-调整数组顺序使奇数位于偶数前面
    如何创建ts+react项目
  • 原文地址:https://www.cnblogs.com/mayufo/p/4286322.html
Copyright © 2020-2023  润新知