34 lines
755 B
HTML
34 lines
755 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>MDN Canvas Tutorial</title>
|
||
|
<style type="text/css">
|
||
|
canvas {
|
||
|
border: 1px solid black;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<canvas id="tutorial" width="150" height="150">
|
||
|
hammer down
|
||
|
</canvas>
|
||
|
<script type="text/javascript">
|
||
|
function draw() {
|
||
|
var canvas = document.getElementById('tutorial');
|
||
|
if (!canvas.getContext) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
var ctx = canvas.getContext('2d');
|
||
|
ctx.fillStyle = 'rgb(200, 0, 0)';
|
||
|
ctx.fillRect(10, 10, 55, 50);
|
||
|
|
||
|
ctx.fillStyle = 'rgba(0, 0, 200, 0.5)';
|
||
|
ctx.fillRect(30, 30, 55, 50);
|
||
|
}
|
||
|
|
||
|
window.addEventListener('load', draw, false);
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|