blob: fe3aa32d671715343e113d95e914f7c7ad9e7138 (
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
25
26
27
28
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<p><canvas width="500" height="200" id="c"></canvas></p>
<script type="text/javascript">
var canvas = document.getElementById('c');
var ctx = canvas.getContext('2d');
ctx.beginPath();
ctx.lineWidth = 20;
ctx.strokeStyle = 'rgb(0,0,0)';
ctx.moveTo(10, 30);
ctx.lineTo(50, 50);
ctx.stroke();
ctx.lineTo(80, 80);
ctx.stroke();
</script>
</body>
</html>
|