24 lines
602 B
HTML
24 lines
602 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script src="load.js"></script>
|
|
<style>
|
|
#demo-canvas:hover {
|
|
cursor: none
|
|
};
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<canvas id="demo-canvas"></canvas>
|
|
<br>
|
|
<p id='scale'></p>
|
|
<button id='descaling'>scale - 1</button>
|
|
<button id='scaling'>scale + 1</button>
|
|
<button id='reset'>reset velocity</button>
|
|
<br>
|
|
<p>Press arrow key to move</p>
|
|
<p>Press space key to jump</p>
|
|
<p>Penger is afraid of your stinky hand</p>
|
|
</body>
|
|
</html>
|