-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·27 lines (24 loc) · 1.04 KB
/
index.html
File metadata and controls
executable file
·27 lines (24 loc) · 1.04 KB
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 lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SSAO</title>
<style>
body {
margin: 0;
overflow: hidden;
}
</style>
</head>
<body>
<script async src="https://unpkg.com/es-module-shims@1.3.6/dist/es-module-shims.js"></script>
<script type="importmap">
{ "imports": { "three": "https://unpkg.com/three@0.160.0/build/three.module.js", "three/examples/": "https://unpkg.com/three@0.160.0/examples/", "three/addons/": "https://unpkg.com/three@0.160.0/examples/jsm/", "postprocessing": "https://unpkg.com/postprocessing@6.33.0/build/index.js"}
}
</script>
<p style="position:absolute;top:100%;transform:translate(4px, -200%);color:white;z-index:100000;background-color: black;">Elapsed Time for AO (<span id="aoMetadata"></span>): <span id="aoTime">0</span>ms </p>
<script type="module" src="main.js"></script>
</body>
</html>