-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 771 Bytes
/
index.html
File metadata and controls
27 lines (27 loc) · 771 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
25
26
27
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>It Works!</title>
<style>
html, body {
overflow: hidden;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
#renderCanvas {
width: 100%;
height: 100%;
touch-action: none;
}
</style>
<script src='https://cdn.babylonjs.com/babylon.js'></script>
</head>
<body>
<canvas id="renderCanvas" oncontextmenu="return false;" tabindex="-1"></canvas>
<p tabindex="0">JavaScript is required for this page to load.</p>
<script src='script.js'></script>
</body>
</html>