我在此处托管了我的网站的静态测试版本:
http://alexgolec.staticloud.com/
但是当我在 Firefox 中启动它时,画布没有正确调整大小。我认为有问题的代码行在这里:
var _docHeight = (document.height !== undefined) ? document.height :
document.body.offsetHeight;
var _docWidth = (document.width !== undefined) ? document.width :
document.body.offsetWidth;
ctx.canvas.width = _docWidth;
ctx.canvas.height = _docHeight;
这段代码在 WebKit 浏览器中可以正常工作,但 Gecko 似乎对它嗤之以鼻。