User:Nicole Hametner/canvas: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
<canvas id="c1" showsrc> | |||
function draw(){ | function draw(){ | ||
c = document.getElementById("c1") | |||
//console.log("c is",c) | |||
p = c.getContext("2d") | |||
x = 10 | |||
while (x<250) { | |||
p.strokeRect(x,100,20,40) | |||
x+=60 | |||
} | |||
p. | |||
} | } | ||
</canvas> | |||
</canvas> | </canvas> |
Revision as of 16:05, 14 October 2012
<canvas id="c1" showsrc> function draw(){
c = document.getElementById("c1") //console.log("c is",c) p = c.getContext("2d") x = 10 while (x<250) { p.strokeRect(x,100,20,40) x+=60 }
} </canvas> </canvas>