19 lines
708 B
HTML
19 lines
708 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>Embedding Example</title>
|
|
|
|
<script type="text/javascript" src="jsnes/dist/jsnes.js"></script>
|
|
<script type="text/javascript" src="nes-embed.js"></script>
|
|
</head>
|
|
<body>
|
|
<div style="margin: auto; max-height: 75vh; aspect-ratio: 4 / 3;">
|
|
<canvas id="nes-canvas" width="256" height="240" style="width: 100%; max-height: 75vh; image-rendering: pixelated; aspect-ratio: 4 / 3;"/>
|
|
</div>
|
|
<button onclick="nes_load_url('nes-canvas', 'smb.nes')">Start!</button>
|
|
<p>DPad: Arrow keys<br/>B button: Z, A button: X, Select: Tab / C, Start: Return / V</p>
|
|
</body>
|
|
</html>
|