-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvr_test.html
More file actions
24 lines (22 loc) · 763 Bytes
/
vr_test.html
File metadata and controls
24 lines (22 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<title>VR Emulator Test</title>
<style>
html, body {
margin: 0; padding: 0; height: 100%; width: 100%; overflow: hidden; background-color: black;
}
</style>
</head>
<body>
<div id="game" style="width:100%; height:100%;"></div>
<script>
var EJS_player = '#game';
var EJS_core = 'snes';
var EJS_pathtodata = 'https://cdn.emulatorjs.org/stable/data/';
// This is a known-good, public domain game from the Internet Archive
var EJS_gameUrl = 'https://archive.org/download/snes-homebrew-compilation/SNES%20Homebrew%20Dev%20Compo.sfc';
</script>
<script src="https://cdn.emulatorjs.org/stable/data/loader.js"></script>
</body>
</html>