This commit is contained in:
mileswa1q22
2024-11-20 18:38:56 +00:00
committed by GitHub
parent 698d0e0977
commit e22087c4f1
4 changed files with 39 additions and 1 deletions
@@ -30,4 +30,4 @@ EJS_pathtodata = 'https://cdn.emulatorjs.org/latest/data/';
left: 0;
overflow: hidden;
}
</style>
</style>
@@ -0,0 +1,33 @@
<div class="game">
<div id='game'></div>
</div>
<script type='text/javascript'>
EJS_player = '#game';
EJS_core = 'n64';
EJS_gameUrl = 't.n64';
EJS_pathtodata = 'https://cdn.emulatorjs.org/latest/data/';
</script>
<script src='https://cdn.jsdelivr.net/gh/ethanaobrien/emulatorjs@main/data/loader.js'></script>
<style>
.game {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
overflow: hidden;
}
#game {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
overflow: hidden;
}
</style>