bouncing-dots/index.html

51 lines
1.5 KiB
HTML
Raw Normal View History

2016-04-02 21:38:31 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Stuff</title>
<meta name="viewport" content="width=device-width, initial-scale=1, max-scale=1">
<!-- 3rd party CSS -->
2016-04-02 21:44:57 +00:00
<link rel="stylesheet" href="css/normalize.css">
2016-04-02 21:38:31 +00:00
<!-- Fix IE -->
<!--[if lt IE 9]>
<script src="http://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7/html5shiv.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.js"></script>
<![endif]-->
<!-- Custom CSS -->
2016-04-02 21:44:57 +00:00
<link rel="stylesheet" href="css/main.css">
2016-04-02 21:38:31 +00:00
<!-- Favicon -->
<link rel="shortcut icon" href="/favicon.png" />
<!-- Scripts -->
2016-04-02 21:44:57 +00:00
<script src="js/AnimationFrame.min.js"></script>
<script async src="js/stuff.js"></script>
2016-04-02 21:38:31 +00:00
<!-- Google Analytics -->
<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-39880341-1', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
</head>
<body>
<canvas id="magic"></canvas>
<div class="container">
</div>
</body>
<script>
window.onload = function () {
new Stuff().draw();
}
</script>
</html>