27 lines
1.0 KiB
HTML
27 lines
1.0 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Kinda web simulator</title>
|
|
<link rel="stylesheet" href="./style.css" />
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>Kinda web simulator</h1>
|
|
<canvas id="display" aria-label="Kinda display simulator"></canvas>
|
|
<p id="status">Loading simulator...</p>
|
|
<section class="controls" aria-label="Input controls">
|
|
<button type="button" data-event="0">Up</button>
|
|
<button type="button" data-event="1">Down</button>
|
|
<button type="button" data-event="2">Select</button>
|
|
<button type="button" data-event="3">Back</button>
|
|
<button type="button" data-event="4">Hold select</button>
|
|
<button type="button" data-event="5">Hold back</button>
|
|
</section>
|
|
<p class="help">Keyboard: ArrowUp, ArrowDown, Enter, Escape or Backspace. Click or tap the display to send a touch.</p>
|
|
</main>
|
|
<script type="module" src="./sim.js"></script>
|
|
</body>
|
|
</html>
|