Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
prism/platforms/web/shell.html

46 lines
No EOL
960 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta content="width=device-width, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" name="viewport"/>
<meta content="yes" name="apple-mobile-web-app-capable"/>
<meta content="black-translucent" name="apple-mobile-web-app-status-bar-style"/>
<link href="#" rel="shortcut icon"/>
<title>Hello Triangle</title>
<style>
body {
background: #333;
font-family: "Verdana", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
margin: 1em 0;
}
#canvas {
position: absolute;
top: 0px;
left: 0px;
border: none;
margin: 0;
width: 100%;
height: 100%;
overflow: hidden;
display: block;
}
</style>
</head>
<body>
<canvas id="canvas" oncontextmenu="event.preventDefault()"></canvas>
<script>
var Module = {
canvas: (function () {
return document.getElementById("canvas");
})()
};
</script>
{{{ SCRIPT }}}
</body>
</html>