You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
3.1 KiB
HTML
88 lines
3.1 KiB
HTML
2 years ago
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||
|
<!-- saved from url=(0055)https://floooh.github.io/sokol-html5/triangle-sapp.html -->
|
||
|
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||
|
|
||
|
<title>triangle</title>
|
||
|
<style type="text/css">
|
||
|
body {
|
||
|
margin: 0;
|
||
|
background-color: black;
|
||
|
}
|
||
|
.game-title {
|
||
|
pointer-events: none;
|
||
|
position: absolute;
|
||
|
bottom: 10px;
|
||
|
margin-top: 0px;
|
||
|
padding-left: 10px;
|
||
|
color: white;
|
||
|
text-decoration: none;
|
||
|
z-index: 1;
|
||
|
text-align: left;
|
||
|
font-family: "Arial Black", Gadget, sans-serif;
|
||
|
font-size: 30px;
|
||
|
}
|
||
|
.game-menu-item {
|
||
|
pointer-events: auto;
|
||
|
font-size: 18px;
|
||
|
padding-left: 10px;
|
||
|
font-family: Arial, Helvetica, sans-serif;
|
||
|
}
|
||
|
.game-menu-link {
|
||
|
text-decoration: none;
|
||
|
color: white;
|
||
|
}
|
||
|
.game {
|
||
|
position: absolute;
|
||
|
top: 0px;
|
||
|
left: 0px;
|
||
|
margin: 0px;
|
||
|
border: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
overflow: hidden;
|
||
|
display: block;
|
||
|
image-rendering: optimizeSpeed;
|
||
|
image-rendering: -moz-crisp-edges;
|
||
|
image-rendering: -o-crisp-edges;
|
||
|
image-rendering: -webkit-optimize-contrast;
|
||
|
image-rendering: optimize-contrast;
|
||
|
image-rendering: crisp-edges;
|
||
|
image-rendering: pixelated;
|
||
|
-ms-interpolation-mode: nearest-neighbor;
|
||
|
}
|
||
|
</style>
|
||
|
<link id="sokol-app-favicon" rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAZdJREFUOE9VUzFSw0AMlGihggekwhV0eQGZ8AQggQ4chlR5CjSeAUwHOHkCZPALoEuVVHkAdCnxMVpJd8YzHt/5pNXuSsdkDxNRkHfSC8REIZB88ASSXxrBdzU+tiVmBHs6UQMAiwgK6kCy4NsPACBPcfQ4VPtSSLdSfbjEmg0kVBkKMQ7lfIXKAoTnt8okPVbjwUqCJR//mtdMpaEa09ZwCZyopfk5g5Doye7UTz0JuUovfti0EIXvAbS7ebw3BaFIwaQAAwAqxzwAUTBYrE8AokG2AIpmHnZmzkG9aLHGcrE+1VoC14a3Nh90ZsKLOSTP/2OYc9pZxReq5Vce5UnqVfdJDlIXEklzOhkFpeXnJQQ7aN4tZcCsi0w0ehtrgMm/7xemAJ2n6/mNdtBseegXykCtJsrfx0ZC3RWA9hCO5uM0r4Ho8bjwgYwWIODoZYPZj8326UCpQPXFjsnAPEvtdA9k2XvegCV6ZZeq3av6fBvUvYZKsBbZiQI4tG0kQzW6kzrE1qfW/cWk+i1w14WuGxgvBOD+AP0MuCLRb/uuAAAAAElFTkSuQmCC"></head>
|
||
|
<body style="background:black">
|
||
|
<canvas class="game" id="canvas" oncontextmenu="event.preventDefault()" width="1504" height="864"></canvas>
|
||
|
<script type="text/javascript">
|
||
|
var Module = {
|
||
|
preRun: [],
|
||
|
postRun: [],
|
||
|
print: (function() {
|
||
|
return function(text) {
|
||
|
text = Array.prototype.slice.call(arguments).join(' ');
|
||
|
console.log(text);
|
||
|
};
|
||
|
})(),
|
||
|
printErr: function(text) {
|
||
|
text = Array.prototype.slice.call(arguments).join(' ');
|
||
|
console.error(text);
|
||
|
},
|
||
|
canvas: (function() {
|
||
|
var canvas = document.getElementById('canvas');
|
||
|
canvas.addEventListener("webglcontextlost", function(e) { alert('FIXME: WebGL context lost, please reload the page'); e.preventDefault(); }, false);
|
||
|
return canvas;
|
||
|
})(),
|
||
|
setStatus: function(text) { },
|
||
|
monitorRunDependencies: function(left) { },
|
||
|
};
|
||
|
window.onerror = function(event) {
|
||
|
console.log("onerror: " + event.message);
|
||
|
};
|
||
|
</script>
|
||
|
{{{ SCRIPT }}}
|
||
|
|
||
|
|
||
|
</body></html>
|
||
|
|