canvas绘制炫酷时钟

canvas绘制炫酷时钟

<!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>
        canvas{
            margin: 0 auto;
            display: block;
        }
        body{
            background: white;
        }
    </style>
</head>
<body>
    <canvas width="500px" height="500px" style="background-color: yellowgreen;"></canvas>
</body>
<script>
    var canvas=document.querySelector("canvas");
    var cantext=canvas.getContext("2d")
    
        function text() {
                var now = new Date()
                var second1 = now.getSeconds()
                var minute = now.getMinutes()
                var hour1 = now.getHours()
                var haom= now.getMilliseconds()
                var second= second1+haom/1000;
                var hour = hour1 + minute / 60;
                hour = hour > 12 ? hour - 12 : hour;
                // 获取全部时间
                var time = now.toLocaleString()

                // 时针
                cantext.shadowColor=" red"
                cantext.shadowOffsetX="10"
                cantext.shadowOffsetY="10"
                cantext.shadowBlur="10"
                cantext.lineWidth = 20; 
                cantext.strokeStyle = " rgb(112, 234, 255)"
                cantext.beginPath()
                cantext.arc(250,250,100,Math.PI*3/2,hour*30*Math.PI/180-Math.PI/2)
                cantext.stroke()


                // 分针
                cantext.lineWidth = 15;
                cantext.strokeStyle = " rgb(112, 234, 255)"
                cantext.beginPath()
                cantext.arc(250,250,150,Math.PI*3/2,minute*6*Math.PI/180-Math.PI/2)
                cantext.stroke()


                // 秒针
                cantext.lineWidth = 10;
                cantext.strokeStyle = " rgb(112, 234, 255)"
                cantext.beginPath()
                cantext.arc(250,250,200,Math.PI*3/2,second*6*Math.PI/180-Math.PI/2)
                cantext.stroke()

                // //时间
                // cantext.fillStyle=" white"
                // // cantext.font="12px 黑体"
                // cantext.fillText(time,185,250)
            }
            setInterval(function () {
                canvas.height = canvas.height
                    text()
                },1)

</script>
</html>

里面用画布画圆的思想表示的

效果图展示

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值