28 lines
739 B
HTML
28 lines
739 B
HTML
<html>
|
|
<head><title>Canvas Experiments</title></head>
|
|
<body>
|
|
Canvas:<br>
|
|
<canvas id="tutorial" width="640" height="480"
|
|
style="border-style: dotted; border-width: 1px;">
|
|
Canvas not supported.
|
|
</canvas>
|
|
|
|
<br>
|
|
Debug:<br>
|
|
<textarea id="debug" style="font-size: 9;" cols=80 rows=25></textarea>
|
|
</body>
|
|
|
|
<script src="include/mootools.js"></script>
|
|
<script src="include/mootools-more.js"></script>
|
|
<script src="canvas.js"></script>
|
|
|
|
<script>
|
|
window.onload = function() {
|
|
debug("here1");
|
|
Canvas.init('tutorial', 640, 480);
|
|
Canvas.draw();
|
|
debug("here2");
|
|
}
|
|
</script>
|
|
</html>
|