46 lines
No EOL
960 B
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> |