mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
29 lines
509 B
HTML
29 lines
509 B
HTML
<!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>
|