forked from jsoverson/JavaScript-Particle-System
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
Latest commit
28 lines (28 loc) · 1021 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (28 loc) · 1021 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>JavaScript Particle System</title>
<scriptsrc="js/vendor/require.js" data-main="js/main"></script>
<style>
body,html {
margin:0;
padding:0;
}
canvas {
background-color: black;
}
</style>
<script>
var_gaq=_gaq||[];_gaq.push(['_setAccount','UA-22728809-1']);_gaq.push(['_trackPageview']);
(function(){
varga=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';
vars=document.getElementsByTagName('script')[0];s.parentNode.insertBefore(ga,s);
})();
</script>
</head>
<body>
<ahref="https://github.com/jsoverson/JavaScript-Particle-System"><imgstyle="position: absolute; top: 0; left: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_darkblue_121621.png" alt="Fork me on GitHub"></a>
<canvasid="canvas"></canvas>
</body>
</html>