canvas实现时钟

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        canvas {
            border: 1px solid red;
            margin-left: 100px;
        }
    </style>
</head>

<body>
    <canvas width="500" height="500" id="canvas"></canvas>
</body>

<script>
    //画圆
    let mc = canvas.getContext('2d')
    let date = new Date()
    let h = date.getHours()
    h = h > 12 ? h - 12 : h
    let m = date.getMinutes()
    let s = date.getSeconds()




    mc.translate(250, 250)
    mc.save()
    mc.beginPath()
    mc.lineWidth = 5
    mc.strokeStyle = 'pink'
    mc.arc(0, 0, 5, 0, Math.PI * 2, false)
    mc.fill()
    mc.stroke()
    mc.closePath()
    mc.restore()

    function timer() {

        mc.clearRect(-250, -250, 500, 500)
        mc.save()
        mc.beginPath()
        mc.rotate(Math.PI / 180)
        mc.lineWidth = 5
        mc.strokeStyle = 'red'
        mc.arc(0, 0, 200, 0, Math.PI * 2, false)
        mc.stroke()
        mc.closePath()
        mc.restore()
        s++


        mc.save()
        //分针
        mc.rotate(6 * m * deg + (6 / 60) * s * deg + (-90) * deg)
        mc.beginPath()
        mc.lineWidth = '3'
        mc.strokeStyle = 'gold'
        mc.moveTo(0, 0)
        mc.lineTo(120, 0)
        mc.stroke()
        mc.restore()
        mc.closePath()


        mc.save()
        //时针
        mc.beginPath()
        mc.rotate(30 * h * deg + (30 / 60) * m * deg + (-90) * deg)
        mc.lineWidth = '5'
        mc.strokeStyle = 'red'
        mc.moveTo(0, 0)
        mc.lineTo(80, 0)
        mc.stroke()
        mc.restore()
        mc.closePath()


        //秒针
        mc.save()
        mc.rotate(6 * s * deg + (-200) * deg)
        mc.beginPath()
        mc.lineWidth = '2'
        mc.strokeStyle = 'pink'
        mc.moveTo(0, 0)
        mc.lineTo(150, 0)
        mc.stroke()
        mc.restore()
        mc.closePath()
        mc.font = '25px 宋体'

        mc.fillText('12', -10, -180)
        mc.fillText('1', 90, -150)
        mc.fillText('2', 160, -90)
        mc.fillText('3', 180, 10)
        mc.fillText('4', 150, 100)
        mc.fillText('5', 85, 170)
        mc.fillText('6', 0, 200)
        mc.fillText('7', -100, 170)
        mc.fillText('8', -160, 100)
        mc.fillText('9', -200, 10)
        mc.fillText('10', -160, -80)
        mc.fillText('11', -100, -150)

        for (let i = 0; i < 12; i++) {
            mc.beginPath()
            mc.rotate(30 * deg)
            mc.lineWidth = 3
            mc.strokeStyle = 'blue'
            mc.moveTo(200, 0)
            mc.lineTo(170, 0)
            mc.stroke()
            mc.fill()
            mc.closePath()
        }
        for (let i = 0; i < 60; i++) {
            mc.beginPath()
            mc.rotate(6 * deg)
            mc.lineWidth = 2
            mc.strokeStyle = 'green'
            mc.moveTo(180, 0)
            mc.lineTo(200, 0)
            mc.stroke()
            mc.closePath()
        }
    }
    let deg = Math.PI / 180
    // mc.translate(200, 200)

    timer()
    mc.rotate(-90 * deg)
    setInterval(timer, 1000)
    mc.rotate(90 * deg)
</script>

</html>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值