forked from cvdlab/plasm.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (51 loc) · 1.59 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html manifest="plasm.js.manifest">
<head>
<meta charset="utf-8">
<title>plasm.js</title>
<link rel="stylesheet" href="styles/reset.css">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<header>
<h1 id="plasm-logo">Plasm.js</h1>
</header>
<div id="plasm"></div>
<footer>
<div id="plasm-inspector"></div>
</footer>
<script src="support/numeric.js"></script>
<script src="support/three.js"></script>
<script src="support/three-detector.js"></script>
<script src="support/three-frame.js"></script>
<script src="support/three-stats.js"></script>
<script src="support/three-trackball.js"></script>
<script src="node_modules/simplexn.js/lib/simplexn.js"></script>
<script src="node_modules/f.js/lib/f.js"></script>
<script src="lib/plasm.js"></script>
<script src="lib/plasm-fun.js"></script>
<script>
p = new Plasm('plasm', 'plasm-inspector');
fun.PLASM(p);
</script>
<script type="text/javascript">
window.applicationCache.onupdateready = function (e) {
console.log("Application update ready");
window.applicationCache.swapCache();
}
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-30496335-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = 'http://www.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>