-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (36 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Berry Pie Curves</title>
<meta id="viewport" name="viewport" content ="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="Author" content="By @spllr over at @StoneSoupGr">
<link rel="stylesheet" type="text/css" href="app.css">
</head>
<body>
<article class="curve-control">
<header>
<h1>Control The Curve</h1>
</header>
<section class="preview">
<canvas class="curve" width="100" height="100">
</canvas>
</section>
<nav class="tracked-curves">
<section class="indicator curve-animation">
<div class="proof">
</div>
</section>
</nav>
<style type="text/css" id="style">
@-webkit-keyframes curve-animation {}
</style>
<footer>
By <a href="http://about.spllr.net" title="Klaas Speller">spllr</a> over at <a href="http://stonesoup.io" title="Stone Soup">Stone Soup</a>
</footer>
</article>
<script type="text/javascript" src="engine.js"></script>
<script type="text/javascript" src="boot.js"></script>
</body>
</html>