Wednesday, March 26, 2014

how to draw in canvas

<!DOCTYPE html>
<html>
<body>

<canvas id="canvas" width="300" height="150" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.</canvas>

<script>


var canvas=document.getElementById("canvas");
var ctx=canvas.getContext("2d");
ctx.font="30px Arial";
ctx.fillText("Hello World",10,50);

</script>

</body>
</html>
result :-


Your browser does not support the HTML5 canvas tag.

No comments:

Post a Comment