• 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>canvas</title>
    </head>
    <body>
        <canvas id="canvas" width="600" height="600"></canvas>
    
        <script>
            let canvas = document.querySelector("#canvas");
    
            let ctx = canvas.getContext("2d");
    
            // true 表示是逆时针
            ctx.arc(200,200,100,0, Math.PI,true) //x: number, y: number, radius: number, startAngle: number, endAngle: number, counterclockwise?: boolean
            ctx.fillStyle="red"
            ctx.fill()
          
            ctx.lineWidth =3
            ctx.stroke()
        </script>
        
    </body>
    </html>
    

      

  • 相关阅读:
    左耳听风
    极客时间-算法
    极客时间-左耳听风阅读笔记
    涨知识
    学做饭
    开发流程
    线上问题复盘
    反思学习复习练习
    系统安全(转)
    单元测试
  • 原文地址:https://www.cnblogs.com/malong1992/p/15750610.html
Copyright © 2020-2023  润新知