up vote 4 down vote favorite
1
share [g+] share [fb]

How do I markup a page with an HTML5 canvas such that the canvas

1.) Takes up 80% of the width

2.) Has a corresponding pixel height and width which effectively define the ratio (and are proportionally maintained when the canvas is stretched to 80%)

3.) Is centered both vertically and horizontally

You can assume that the canvas is the only thing on the page, but feel free to encapsulate it in s if necessary.

link|improve this question

feedback

7 Answers

Tested only on Firefox:

<script>
window.onload = window.onresize = function() {
    var C = 0.8;        // canvas width to viewport width ratio
    var W_TO_H = 2/1;   // canvas width to canvas height ratio
    var el = document.getElementById("a");

    // For IE compatibility http://www.google.com/search?q=get+viewport+size+js
    var viewportWidth = window.innerWidth;
    var viewportHeight = window.innerHeight;

    var canvasWidth = viewportWidth * C;
    var canvasHeight = canvasWidth / W_TO_H;
    el.style.position = "fixed";
    el.setAttribute("width", canvasWidth);
    el.setAttribute("height", canvasHeight);
    el.style.top = (viewportHeight - canvasHeight) / 2;
    el.style.left = (viewportWidth - canvasWidth) / 2;

    window.ctx = el.getContext("2d");
    ctx.clearRect(0,0,canvasWidth,canvasHeight);
    ctx.fillStyle = 'yellow';
    ctx.moveTo(0, canvasHeight/2);
    ctx.lineTo(canvasWidth/2, 0);
    ctx.lineTo(canvasWidth, canvasHeight/2);
    ctx.lineTo(canvasWidth/2, canvasHeight);
    ctx.lineTo(0, canvasHeight/2);
    ctx.fill()
}
</script>

<body>
<canvas id="a" style="background: black">
</canvas>
</body>
link|improve this answer
2  
jsfiddle.net/FUCur – Mark Jun 20 '10 at 6:57
feedback

Given that canvas is nothing without JavaScript, use JavaScript too for sizing and positionning (you know: onresize, position:absolute, etc.)

link|improve this answer
1  
Could you provide a code example please? – user122147 Jul 20 '09 at 13:08
feedback

Wrapping it with div should work. I tested it in Firefox, Chrome on Fedora 13.

<style type="text/css">
    #content {
        width: 95%;
        height: 95%;
        margin: auto;
    }
    #myCanvas {
        width: 100%;
        height: 100%;
        border: 1px solid black;
    }
</style>

And the canvas should be enclosed in tag

<div id="content">
    <canvas id="myCanvas">Your browser doesnt support canvas tag</canvas>
</div>

Let me know if it works. Cheers.

link|improve this answer
1  
jsfiddle.net/p4BEs – Sainath Mallidi Aug 29 '10 at 2:17
feedback

As to the CSS suggestion:

#myCanvas { 
 width: 100%;
 height: 100%;
}

By the standard, CSS does not size the canvas coordinate system, it scales the content. In Chrome, the CSS mentioned will scale the canvas up or down to fit the browser's layout. In the typical case where the coordinate system is smaller than the browser's dimensions in pixels, this effectively lowers the resolution of your drawing. It most likely results in non-proportional drawing as well.

link|improve this answer
feedback

in order to center the canvas within the window +"px" should be added to el.style.top and el.style.left.

el.style.top = (viewportHeight - canvasHeight) / 2 +"px";
el.style.left = (viewportWidth - canvasWidth) / 2 +"px";
link|improve this answer
feedback

Resizing canvas using css is not a good idea. It should be done using Javascript. See the below function which does it

function setCanvas(){

   var canvasNode = document.getElementById('xCanvas');

   var pw = canvasNode.parentNode.clientWidth;
   var ph = canvasNode.parentNode.clientHeight;

   canvasNode.height = pw * 0.8 * (canvasNode.height/canvasNode.width);  
   canvasNode.width = pw * 0.8;
   canvasNode.style.top = (ph-canvasNode.height)/2 + "px";
   canvasNode.style.left = (pw-canvasNode.width)/2 + "px";


}

demo here : http://jsfiddle.net/9Rmwt/11/show/

.

link|improve this answer
feedback

This will center the canvas horizontally:

<div style="width: 100%; text-align:center"><canvas style="display:inline;"></canvas></div>
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.