forked from stillonearth/MuJoCo-WASM
-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.html
39 lines (35 loc) · 2 KB
/
index.html
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
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<title>MuJoCo Demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="application-name" content="mujoco_wasm">
<meta name="description" content="MuJoCo Testbed">
<meta name="keywords" content="MuJoCo">
<meta name="author" content="zalo">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, viewport-fit=cover, user-scalable=no, shrink-to-fit=0">
<meta name="theme-color" content="#ffffff">
<link rel ="icon" type="image/x-icon" href="./examples/favicon.png">
</head>
<body style="margin:0px; background-color:rgb(255, 255, 255); overflow:hidden; position:fixed; min-height: 100%;
touch-action: none;
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */">
<h1 hidden></h1> <!-- Puts the Lighthouse Score over 90 heheh-->
<!-- Import maps polyfill -->
<script async src="https://unpkg.com/[email protected]/dist/es-module-shims.js"></script>
<!-- Allows three.js Examples to work without building -->
<script type="importmap">
{ "imports": { "three": "./node_modules/three/build/three.module.js", "three/addons/": "./node_modules/three/examples/jsm/"} }
</script>
<div id="appbody" style="position: absolute;">
<!--<div id="error"></div>
<script type="module" src="./examples/Debug.js"></script>-->
<script type="module" src="./examples/main.js"></script>
</div>
</body>
</html>