Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以根据当前窗口尺寸制作 HTML5 画布宽度和高度?..使用 jQuery,在 window.resize() 函数中?如果是这样,我只是在寻找一个超级基本的例子。我整个早上都在尝试研究这个问题,但还没有找到关于这个话题的可靠答案。
感谢您的任何反馈!
好吧,这很容易做到:
$(window).resize(function () { $('#canvas').width($(window).width()); $('#canvas').height($(window).height()); });
http://jsfiddle.net/ha73R/1/