zoukankan      html  css  js  c++  java
  • canvas

    canvas的使用

    image-20200924204533041

    <!DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
    </head>
    
    <body>
        <canvas id="canvas" width="400" height="400" style="border:1px solid black">
        </canvas>
        <script>
            let canvas = document.getElementById('canvas')
            let ctx = canvas.getContext('2d')
            ctx.font = "20px Georgia";
            ctx.strokeStyle = 'red'
            ctx.strokeText('-2', 0, 220)
            ctx.strokeText('0', 180, 220)
            ctx.strokeText('2', 380, 220)
            ctx.strokeText('2', 180, 20)
            ctx.strokeText('-2', 170, 395)
    
            //转换坐标系,并设置好线宽
            ctx.transform(100, 0, 0, -100, 200, 200);
            ctx.lineWidth = 0.01
            ctx.moveTo(-2, 0)
            ctx.lineTo(2, 0)
            ctx.moveTo(0, -2)
            ctx.lineTo(0, 2)
    
            ctx.stroke()
    
            ctx.beginPath()
            ctx.moveTo(-2, 4)
            ctx.strokeStyle = 'blue'
            let step = 0.1
            for (let i = 0; i < 400; i++) {
                let x = (i - 200) * step
                let y = x * x - 1
                ctx.lineTo(x, y)
            }
            ctx.stroke()
        </script>
    </body>
    </html>
    
    image-20200924205310816 image-20200924205310816
  • 相关阅读:
    TechRoad_oneStep_0410
    Tech road one step
    TechRoad--oneStep--0327
    TechRoad_oneStep 0313
    Tech road one step
    Tech road one step
    Tech road one step
    Tech road one step
    Tech road one step
    Tech road one step
  • 原文地址:https://www.cnblogs.com/xiaoxiao179/p/13726580.html
Copyright © 2011-2022 走看看