首先,我将解释我到目前为止的情况; 一个始终位于页面中间的动态画布,它的宽度是通过javascript计算计算的,所以它可能会有所不同,之后会有一些flexbox div添加到它的两侧,它们会填充剩下的页面相同(即使使用CTRL调整大小,它的工作方式也相同):
https://jsfiddle.net/62g1mqw0/2/
<div class="wrapper">
<div class="divA"></div>
<div class="divB">
<canvas id="canvas"></canvas>
</div>
<div class="divC"></div>
</div>
<style type="text/css">
* {
box-sizing: border-box;
}
body {
height: 100vh;
margin: 0;
}
.wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%;
height: 100%;
}
.wrapper div {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
border: 1px solid;
}
.wrapper .divB {
border: none;
}
#canvas {
vertical-align:top;
}
</style>
<script>
var canvas = document.getElementById("canvas");
var WIDTH = 500; // This could be anything! it comes from
//previous calculations which I did not include here because they are irelevant
document.getElementsByClassName('divB')[0].style.flex = '0 0 ' + WIDTH + 'px';
var width = document.getElementsByClassName('divB')[0].getBoundingClientRect().width;
var height = document.getElementsByClassName('divB')[0].getBoundingClientRect().height;
document.getElementById("canvas").style.width = width + 'px';
document.getElementById("canvas").style.height = height + 'px';
var ctx = canvas.getContext("2d");
ctx.fillStyle = "blue";
ctx.fillRect(0, 0, width, height);
// resize handler Ref: https://developer.mozilla.org/en-US/docs/Web/Events/resize
(function() {
window.addEventListener("resize", resizeThrottler, false);
var resizeTimeout;
function resizeThrottler() {
if (!resizeTimeout) {
resizeTimeout = setTimeout(function() {
resizeTimeout = null;
actualResizeHandler();
}, 66);
}
}
function actualResizeHandler() {
var width = document.getElementsByClassName('divB')[0].getBoundingClientRect().width;
var height = document.getElementsByClassName('divB')[0].getBoundingClientRect().height;
document.getElementById("canvas").style.width = width + 'px';
document.getElementById("canvas").style.height = height + 'px';
ctx = canvas.getContext("2d");
ctx.fillStyle = "red";
ctx.fillRect(0, 0, width, height);
}
}());
</script>
正如你在jsFiddle上看到的那样,总结果是100%的页面宽度和高度都被canvas和flexbox填充。
现在,在现代浏览器中,您不会发现问题,但在旧浏览器中,您会看到奇怪的事情发生;一个div浮动到下一个,一些黑点等。对我来说非常重要的是支持旧浏览器,因为我使用cordova编译它,而旧版本的Android用户仍然使用旧浏览器,他们可能会看到我的应用程序非常奇怪。我已经在KitKat和一些旧版本上进行了测试,但我不知道为什么他们不能正确支持Flexbox。我添加了-webkit行,它仍然没有帮助。我甚至不介意选择另一种不涉及flexbox的完全不同的解决方案
答案 0 :(得分:0)
您可能会通过使用polyfill来节省大量时间和挫折 - 为了获得完整的浏览器支持,您将需要完全支持。
最受欢迎的似乎是Flexibility。
如果你不想沿着polyfill路线走下去,你可以在几年前跟随this question的一些答案。