I think this works
HTML
<html>
<head>
<style>
body, html {
width: 100%;
height: 100%;
border: 0px;
padding: 0px;
margin: 0px;
}
#c {
width: 100%;
height: 100%;
}
<style>
<script>
//see code below
</script>
</head>
<body>
<canvas id="c"></canvas>
</body>
</html>
javascript
var canvas;
var gl;
function resizeCanvas() {
// only change the size of the canvas if the size it's being displayed
// has changed.
if (canvas.width != canvas.clientWidth ||
canvas.height != canvas.clientHeight) {
// Change the size of the canvas to match the size it's being displayed
canvas.width = canvas.clientWidth;
canvas.height = canvas.clientHeight;
}
}
function main() {
canvas = document.getElementById("c");
gl = canvas.getContext("experimental-webgl");
resizeCanvas();
...
// at render time
gl.viewport(0, 0, gl.canvas.width, gl.canvas.height);
}
window.addEventListener('load', main);
window.addEventListener('resize' resizeCanvas);
Here's a fiddle showing this
As far as I know, resize only works on the window. The HTML5 spec has unfortunately not added resize events to other elements.
Note: If you are always rendering (like a game for example) then you don't need to listen for the resize event. Just call resizeCanvas at the beginning of your render loop. If the browser has resized the canvas, regardless of it's container, the code will see the size no longer matches and update the size of the canvas's drawingbuffer.
The proper viewport size for rendering the the canvas is almost always
// Set the viewport to be the size of the canvas's drawingBuffer.
gl.viewport(0, 0, gl.canvas.width, gl.canvas.height);
Where as if you are using a typical 3D math library you also have a projection matrix and a function, usually called perspective which takes a fieidOfView, aspect, zNear and zFar parameters. The correct aspect for nearly all WebGL programs is
// Set the aspect of our perspective matrix to match the size
// the canvas is displayed at.
var aspect = gl.canvas.clientWidth / gl.canvas.clientHeight
???.perspective(fieldOfView, aspect, zNear, zFar);