How can I automatically scale the HTML5 <canvas> element to fit the page?

For example, I can get a <div> to scale by setting height and width to 100%, but a <canvas> won't scale, will it?

link|improve this question

75% accept rate
What element? div? table? Post some code would helps. – NawaMan Nov 3 '09 at 2:05
feedback

7 Answers

up vote 57 down vote accepted

I believe I have found an elegant solution to this:

JavaScript

/* important! for alignment, you should make things
 * relative to the canvas' current width/height.
 */
function draw() {
  var ctx = (a canvas context);
  ctx.canvas.width  = window.innerWidth;
  ctx.canvas.height = window.innerHeight;
  //...drawing code...
}

CSS

html, body {
  width:  100%;
  height: 100%;
  margin: 0px;
}

Hasn't had any large negative performance impact for me, so far.

link|improve this answer
You can set this on a separate interval if you wish too. – devyn Aug 13 '10 at 4:46
I have tried this and I'm consistently getting scrollbars. I checked the width of my html file element (in the console, looking at computed style) and it's always a few pixels less than what window.innerWidth is returning. Any ideas? – Elisabeth Jul 17 '11 at 20:35
1  
You probably have to disable margin with body, html { margin: 0px;} – Nicklas A. Sep 11 '11 at 3:43
4  
Is this preferable to listening to the resize event? – Eric Sep 28 '11 at 7:15
1  
@dan: some FF add-ons can botch the innerWidth property. – jerseyboy Jan 25 at 14:37
show 3 more comments
feedback

Unless you want the canvas to upscale your image data automatically (that's what James Black's answer talks about, but it won't look pretty), you have to resize it yourself and redraw the image. http://stackoverflow.com/questions/1152203/centering-a-canvas/1646370#1646370

link|improve this answer
Ah, okay. Thanks! – devyn Nov 5 '09 at 0:41
feedback

Setting the canvas coordinate space width and height based on the browser client's dimensions requires you to resize and redraw whenever the browser is resized.

A less convoluted solution is to maintain the drawable dimensions in Javascript variables, but set the canvas dimensions based on the screen.width, screen.height dimensions. Use CSS to fit:

#containingDiv { 
  overflow: hidden;
}
#myCanvas {
  position: absolute; 
  top: 0px;
  left: 0px;
} 

The browser window generally won't ever be larger than the screen itself (except where the screen resolution is misreported, as it could be with non-matching dual monitors), so the background won't show and pixel proportions won't vary. The canvas pixels will be directly proportional to the screen resolution unless you use CSS to scale the canvas.

link|improve this answer
Rescaling canvas with CSS is troublesome. At least on Chrome and Safari, mouse/touch event positions will not correspond 1:1 with canvas pixel positions, and you'll have to transform the coordinate systems. – jerseyboy Dec 1 '11 at 15:44
feedback

If your div completely filled the webpage then you can fill up that div and so have a canvas that fills up the div.

You may find this interesting, as you may need to use a css to use percentage, but, it depends on which browser you are using, and how much it is in agreement with the spec: http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#the-canvas-element

The intrinsic dimensions of the canvas element equal the size of the coordinate space, with the numbers interpreted in CSS pixels. However, the element can be sized arbitrarily by a style sheet. During rendering, the image is scaled to fit this layout size.

You may need to get the offsetWidth and height of the div, or get the window height/width and set that as the pixel value.

link|improve this answer
feedback

you can use a div to get your canvas to fill the page:

<head>
<style type='text/css'>
div {position:absolute;left:0px;top:0px;width:100%;height:100%;}
</style>
</head>
<body>
<div><canvas></canvas></div>
<script type="text/Javascript">
//get div to gain access to window size
div=document.getElementsByTagName('div')[0]
//set canvas size to the whole window 
canvas=document.getElementsByTagName('canvas')[0]
canvas.width=div.scrollWidth
canvas.height=div.scrollHeight
</script>
</body>

see this for example

link|improve this answer
feedback

You can use CSS to scale your canvas, but not all browsers do this in a very efficient way (Chrome is much better than Firefox, for example):

<html>
  <head>
    <style type="text/css">
      #myCanvas {
        height: 100%; width: 100%; border: 1px solid black;
      }
    </style>
  </head>
  <body>
    <canvas id="myCanvas">(Your browser doesn't support canvas)</canvas>
  </body>
</html>

Depending on the complexity of your canvas and the frequency of your redraws, this may be simple enough for your needs. But as I mentioned, not all browsers do this very efficiently yet, so your mileage may vary.

link|improve this answer
Okay, cool, I actually decided to just automatically resize every redraw... and it runs pretty darn fast. It works okay for my needs, and then I just write a little percentage function as a helper. – devyn Nov 14 '09 at 0:18
feedback

Basically what you have to do is to bind the onresize event to your body, once you catch the event you just need to resize the canvas using window.innerWidth and window.innerHeight.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Canvas Resize</title>

    <script type="text/javascript">
        function resize_canvas(){
            canvas = document.getElementById("canvas");
            if (canvas.width  < window.innerWidth)
            {
                canvas.width  = window.innerWidth;
            }

            if (canvas.height < window.innerHeight)
            {
                canvas.height = window.innerHeight;
            }
        }
    </script>
</head>

<body onresize="resize_canvas()">
        <canvas id="canvas">Your browser doesn't support canvas</canvas>
</body>
</html>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.