Resize HTML5 canvas to fit window

前端 未结 16 1453
遥遥无期
遥遥无期 2020-11-22 12:03

How can I automatically scale the HTML5 element to fit the page?

For example, I can get a

to scale by setting th
16条回答
  •  谎友^
    谎友^ (楼主)
    2020-11-22 12:19

    Using jQuery you can track the window resize and change the width of your canvas using jQuery as well.

    Something like that

    $( window ).resize(function() {
     		$("#myCanvas").width($( window ).width())
    });
    
    

提交回复
热议问题