- ID de exploración:
- 1f2871d5-0fa9-4014-a91e-b4c91e506243Finalizado
- URL enviada:
- https://mathadventure1.github.io/sm64/sm64/index.html
- Informe finalizado:
Enlaces: 0 encontrados
Los enlaces salientes identificados en la página
Variables JavaScript: 596 encontradas
Las variables JavaScript globales cargadas en el objeto de ventana de una página son variables declaradas fuera de las funciones y a las que se puede acceder desde cualquier lugar del código en el ámbito actual
Nombre | Tipo |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
Module | object |
moduleOverrides | object |
key | string |
arguments_ | object |
thisProgram | string |
quit_ | function |
ENVIRONMENT_IS_WEB | boolean |
Mensajes de registro de la consola: 9 encontrados
Mensajes registrados en la consola web
Tipo | Categoría | Registrar |
---|---|---|
warning | other |
|
log | other |
|
log | other |
|
log | other |
|
error | other |
|
error | other |
|
error | other |
|
log | other |
|
error | other |
|
HTML
El cuerpo HTML sin procesar de la página
<!DOCTYPE html><html lang="en-us"><head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Super Mario 64</title>
<link rel="shortcut icon" href="logo.png">
<style>
body, html{
margin: 0;
padding: 0;
width: 100vw;
min-height: 100vh;
font-family: Arial, Helvetica, sans-serif;
color: white;
background-color: black;
image-rendering: pixelated;
scrollbar-width: none;
}
::-webkit-scrollbar {
display: none;
}
#container {
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
canvas {
width: 100vw;
height: 100vh;
}
</style>
</head>
<body>
<div id="container">
<canvas class="emscripten" id="canvas" width="800" height="600"></canvas>
</div>
<script type="text/javascript">
var Module = {
preRun: [],
postRun: [],
print: (function() {
return function(text) {
if (arguments.length > 1) text = Array.prototype.slice.call(arguments).join(' ');
console.log(text);
};
})(),
printErr: function(text) {
if (arguments.length > 1)
text = Array.prototype.slice.call(arguments).join(' ');
console.error(text);
},
canvas: (function() {
var canvas = document.getElementById('canvas');
canvas.width = window.innerWidth; // Todo: how to do this from c++
canvas.height = window.innerHeight;
canvas.addEventListener("webglcontextlost", function(e) {
alert('WebGL context lost. You will need to reload the page.');
e.preventDefault();
}, false);
return canvas;
})(),
setStatus: function(text) {
}
};
</script>
<script async="" type="text/javascript" src="sm64.us.f3dex2e.js"></script>
<script>
</script>
</body></html>