forked from neilcarpenter/Matrix-code-rain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (34 loc) · 1.5 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Matrix code rain</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="info">
<p><strong>Matrix code rain</strong></p>
<p>Experiment write up <a href="http://neilcarpenter.com/labs/matrix-rain" target="_blank">here</a>.</p>
<button id="snapshot">Take snapshot</button>
<!-- <button id="enter">Enter</button> -->
<a href="#" class="toggle-info" id="open">Show info</a>
<a href="#" class="toggle-info" id="close">Hide info</a>
</div>
<canvas id="canvas"></canvas>
<a href="https://github.com/neilcarpenter/Matrix-code-rain" id="ribbon"><img style="position: absolute; top: 0; right: 0; border: 0; z-index: 50;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
<script src="stats.min.js"></script>
<script src="script.js"></script>
<script type="text/javascript">
if (window.location.host.indexOf('local') !== 0) {
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-16253496-4']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
}
</script>
</body>
</html>