Added F11 fullscreen functionality

pull/266/head
FalcoDJ 3 years ago committed by GitHub
parent 7a20524ae4
commit 4a95c2496a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 83
      WASM/basic_template.html

@ -1,49 +1,87 @@
<!doctype html> <!doctype html>
<html lang="en-us"> <html lang="en-us">
<head>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Emscripten-Generated Code</title> <title>Emscripten Generated Code</title>
<style> <style>
html,body { width: 100%; height: 100%; } html,
body { font-family: arial; margin: 0; padding: 0; background: #000; } body {
width: 100%;
height: 100%;
}
.emscripten { padding-right: 0; margin-left: auto; margin-right: auto; display: block; } body {
div.emscripten_border { border: none; } font-family: arial;
margin: 0;
padding: 0;
background: #000;
}
/* the canvas *must not* have any border or padding, or mouse coords will be wrong */ .emscripten {
canvas.emscripten { border: 0px none; background-color: black; } padding-right: 0;
margin-left: auto;
margin-right: auto;
display: block;
}
div.emscripten_border {
border: none;
}
/* the canvas *must not* have any border or padding, or mouse coords will be wrong */
canvas.emscripten {
border: 0px none;
background-color: black;
}
</style> </style>
</head> </head>
<body>
<body>
<canvas class="emscripten" id="canvas" oncontextmenu="event.preventDefault()" tabindex=-1></canvas> <canvas class="emscripten" id="canvas" oncontextmenu="event.preventDefault()" tabindex=-1></canvas>
<script type='text/javascript'> <script type='text/javascript'>
var Module = { function openFullscreen(elem) {
if (elem.requestFullscreen) {
elem.requestFullscreen();
} else if (elem.webkitRequestFullscreen) { /* Safari */
elem.webkitRequestFullscreen();
} else if (elem.msRequestFullscreen) { /* IE11 */
elem.msRequestFullscreen();
}
}
var Module = {
preRun: [], preRun: [],
postRun: [], postRun: [],
canvas: (function() { canvas: (function() {
var canvas = document.getElementById('canvas'); const canvas = document.querySelector('canvas');
// As a default initial behavior, pop up an alert when webgl context is lost. To make your // As a default initial behavior, pop up an alert when webgl context is lost. To make your
// application robust, you may want to override this behavior before shipping! // application robust, you may want to override this behavior before shipping!
// See http://www.khronos.org/registry/webgl/specs/latest/1.0/#5.15.2 // See http://www.khronos.org/registry/webgl/specs/latest/1.0/#5.15.2
canvas.addEventListener("webglcontextlost", function(e) { alert('WebGL context lost. You will need to reload the page.'); e.preventDefault(); }, false); canvas.addEventListener("webglcontextlost", function(e) {
alert('WebGL context lost. You will need to reload the page.');
e.preventDefault();
}, false);
canvas.addEventListener("keydown", (e) => {
if (e.key === "F11") {
openFullscreen(canvas);
}
});
return canvas; return canvas;
})(), })(),
}; };
</script> </script>
<script async type="text/javascript" src="./pge.js"></script> <script async type="text/javascript" src="./pge.js"></script>
<script type="text/javascript"> <script type="text/javascript">
Module.canvas.addEventListener("resize", (e) => { Module.canvas.addEventListener("resize", (e) => {
var viewWidth = e.detail.width; var viewWidth = e.detail.width;
var viewHeight = e.detail.width / Module._olc_WindowAspectRatio; var viewHeight = e.detail.width / Module._olc_WindowAspectRatio;
if(viewHeight > e.detail.height) if (viewHeight > e.detail.height) {
{
viewHeight = e.detail.height; viewHeight = e.detail.height;
viewWidth = e.detail.height * Module._olc_WindowAspectRatio; viewWidth = e.detail.height * Module._olc_WindowAspectRatio;
} }
@ -68,10 +106,9 @@ Module.canvas.addEventListener("resize", (e) => {
// ensure canvas has focus // ensure canvas has focus
Module.canvas.focus(); Module.canvas.focus();
e.preventDefault(); e.preventDefault();
}); });
</script> </script>
</body>
</html>
</body>
</html>

Loading…
Cancel
Save