How can I scale the HTML5 canvas without making it blurry?

前端 未结 3 362
死守一世寂寞
死守一世寂寞 2021-01-20 18:12

I have created a canvas using the following markup:


Now, if I specify width and

3条回答
  •  旧时难觅i
    2021-01-20 18:23

    Canvas CSS properties do not resize canvas, they rescale it.
    You may simply change the properties with your JS:

    $("#canvas")
        .prop("width", window.innerWidth)
        .prop("height", window.innerHeight); 
    

提交回复
热议问题