我想要一个在 div 中包含画布元素的响应式页面。我应该能够简单地将一个画布元素包裹在另一个块元素中,并给该画布一个相对宽度。虽然这种方法适用于 Chrome、Firefox、Safari 和 Opera,但 IE 肯定是美中不足!我什至没有尝试比 IE9 更旧的版本——这个简单的代码示例在 IE9 中无法按预期工作:
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Test IE9 Canvas Height</title>
<style>
body {
margin: 0;
padding: 0;
}
#container {
position: relative;
padding-top: 32%;
background-color: #88f;
}
.instruments {
position: absolute;
bottom: 0%;
width: 100%;
padding-bottom: 16%;
background-color: #8f8;
}
#circle {
position: absolute;
left: 42%;
width: 16%;
}
</style>
</head>
<body>
<div id="container">
<div class="instruments">
<canvas id="circle"></canvas>
</div>
</div>
<script>
var canvas = document.getElementById("circle");
var ctx = canvas.getContext("2d");
// Default canvas is 300x150, so make it square
canvas.height = canvas.width;
ctx.beginPath();
ctx.arc(canvas.width / 2, canvas.height / 2, canvas.width / 2, 0, 2 * Math.PI);
ctx.fillStyle = "red";
ctx.fill();
</script>
</body>
</html>
这个简单的页面应该呈现一个高度为主体宽度 32% 的蓝色块,然后让另一个绿色块与底部 1/2 重叠。内部 div 内部是一个画布元素,它没有明确设置高度和宽度——因此它可以在各种窗口/主体宽度下保持流畅。画布应绘制一个红色圆形,高度完全包含在其包含的 div 中。在除 IE9 之外的所有其他浏览器(我认为也除 IE10 之外)中都能很好地工作。
即使我确实指定了画布大小,
<canvas id="circle" width="300" height="300"></canvas>
它仍然不起作用。
我做错了什么,还是有更好的方法来实现这个目标?我不想设置像素或点大小的样式或编码,并且更愿意避免 javascript IE hack。谢谢