出于某种原因,如果以下代码中的第二个画布的高度超过 526 像素,Chrome 中将不会对其进行任何绘制。只要 height < 527,它就可以正常工作,并且始终可以在 Firefox 中使用。有人知道我在做什么错吗?我对 HTML 很陌生,如果我错过了一些东西,很抱歉。
<!doctype html>
<html>
<head>
<script type="text/javascript">
function init()
{
var canv = document.getElementById("myCanvas");
var ctx = canv.getContext("2d");
ctx.fillStyle = "red";
ctx.fillRect(0, 0, canv.width, canv.height);
}
</script>
<style type="text/css">
canvas {border: 1px solid black; }
</style>
</head>
<body onload="init()">
<canvas id="mainFrame" width="700" height="700"></canvas>
<canvas id="myCanvas" width="125" height="527"></canvas> <!-- cannot exceed
526 ... WHY? -->
</body>
</html>