-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfull.html
64 lines (56 loc) · 1.86 KB
/
full.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
60
61
62
63
64
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja" manifest="no_cache.appcache">
<title>(centiscript)</title>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="Quick drawing script">
<meta name="keywords" content="rhizomatiks,ライゾマティクス,canvas,javascript">
<!--<link rel="stylesheet" href="css/style.css" type="text/css" />-->
<style type="text/css">
<!--
body, html {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
.canvas_wrap{
width: 100%;
height: 100%;
}
canvas{
position: absolute;
}
-->
</style>
<!--[if lt IE 9]><script type="text/javascript" src="lib/excanvas.js"></script><![endif]-->
<script src="lib/jquery-3.2.1.min.js"></script>
<script src="lib/perlin.min.js"></script>
<script src="lib/kdTree-min.js"></script>
<script src="lib/Tween.js"></script>
<script src="lib/glitch-canvas.min.js"></script>
<script src="lib/three.js/build/three.min.js"></script>
<script src="js/utils.js"></script>
<script src="js/centi.js"></script>
<script src="js/centi.matrix.js"></script>
<script src="js/centi.bitmapFont.js"></script>
<script src="js/plugin/centi.three.js"></script>
<script src="js/centiAppFull.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-52393-12', 'auto');
ga('require', 'displayfeatures');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="canvas_wrap" id="canvas_wrap">
<canvas id="canvas0" width="720" height="360"></canvas>
</div>
</body>
</html>