-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcanvas.html
28 lines (26 loc) · 860 Bytes
/
canvas.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
var canvas, ctx;
function draw() {
canvas = document.getElementById("canvas");
ctx = canvas.getContext("2d");
ctx.fillStyle="#33cc33"
//ctx.fillRect(10, 10, 400, 300); //neliö
ctx.strokeStyle="0000";
ctx.lineWidth = 3;
ctx.beginPath();
ctx.arc(400, 300, 200, 0, Math.PI*2, false);
ctx.fill();
ctx.stroke();
}
</script>
</head>
<body onload="draw()">
<canvas id="canvas" width="1024" height="768"></canvas>
</body>
</html>