0
3.4kviews
Using HTML 5 draw canvas containing a STAR.
1 Answer
written 6.2 years ago by | • modified 6.2 years ago |
<canvas>
element is used to draw graphics using JavaScript.<canvas>
element act as a container for graphics. But script is actually used to draw the graphics.<canvas>
element.<!DOCTYPE HTML>
<html>
<head>
<title>HTML5 Canvas Tag</title>
</head>
<body><center>
<h1>HTML 5 Canvas With STAR</h1>
<canvas id="starCanvas" width="300" height="250"></canvas>
<script>
var canvas = document.getElementById('starCanvas');
var ctx = canvas.getContext('2d');
ctx.fillStyle = "yellow";
ctx.beginPath();
ctx.moveTo(108, 0.0);
ctx.lineTo(141, 70);
ctx.lineTo(218, 78.3);
ctx.lineTo(162, 131);
ctx.lineTo(175, 205);
ctx.lineTo(108, 170);
ctx.lineTo(41.2, 205);
ctx.lineTo(55, 131);
ctx.lineTo(1, 78);
ctx.lineTo(75, 68);
ctx.lineTo(108, 0);
ctx.closePath();
ctx.stroke();
ctx.fill();
</script>
</center></body>
</html>