0
我嘗試在整頁canvas上放置一個div。在Chrome中工作良好,但在firefox和ie9中,它會變成'kaput'。Html5 div over canvas crossbrowser
下面是該代碼的鏈接(在firefox chrome和ie9中嘗試過),只有鉻可以工作;
http://jsbin.com/ubolan/1/edit
我嘗試在整頁canvas上放置一個div。在Chrome中工作良好,但在firefox和ie9中,它會變成'kaput'。Html5 div over canvas crossbrowser
下面是該代碼的鏈接(在firefox chrome和ie9中嘗試過),只有鉻可以工作;
http://jsbin.com/ubolan/1/edit
在IE9文檔沒有屬性document.width/document.height
所以要設置在畫布寬度/高度爲0。
嘗試使用
canvas.width = document.body.clientWidth;
canvas.height = document.body.clientHeight;
或
canvas.width = $(document).width();
canvas.height = $(document).height();
好的。非常感謝。我修好了。很高興知道文檔屬性。再次感謝 – user1612293