blob: 70852f957ba61c899bcc4db6ba551b19556172a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<html>
<head>
</head>
<body>
<canvas id="canvas" width="300" height="300"></canvas>
<script type="application/javascript">
var canvas = document.getElementById("canvas");
var ctx = canvas.getContext("2d");
ctx.fillStyle = '#eeeeee';
ctx.strokeStyle = '#000000';
ctx.beginPath();
ctx.moveTo(0, 50);
ctx.lineTo(50, 50);
ctx.translate(100, 100);
ctx.lineTo(50, 0);
ctx.stroke();
ctx.fill();
</script>
</body>
</html>
|