This repository has been archived by the owner on Nov 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (70 loc) · 4.35 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>times-table-patterns</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<!-- Add your site or application content here -->
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-drawer">
<div class="mdl-layout__drawer mdl-color--grey-900 mdl-color-text--grey-50">
<span class="mdl-layout-title">times-table-patterns</span>
<nav class="mdl-navigation mdl-color--grey-800">
<label class="mdl-slider__label" for="linesInput" id="linesInputLabel">Lines: 200</label>
<input class="mdl-slider mdl-js-slider" type="range" id="linesInput" min="0" max="2000" value="200">
<label class="mdl-slider__label" for="multiplierInput" id="multiplierInputLabel">Multiplier: 2</label>
<input class="mdl-slider mdl-js-slider" type="range" id="multiplierInput" min="0" max="200" value="2">
<label class="mdl-slider__label" for="animationInput">Animation</label>
<label class="mdl-switch mdl-js-switch mdl-js-ripple-effect" id="animationInputLabel" for="animationInput">
<input type="checkbox" id="animationInput" class="mdl-switch__input">
</label>
<label class="mdl-slider__label" for="speedInput" id="speedInputLabel">Speed: 0.0005</label>
<input class="mdl-slider mdl-js-slider" type="range" id="speedInput" min="0.0001" max="0.1" value="0.0005" step="0.0001">
<label class="mdl-radio__label">Color</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="colorOption1">
<input type="radio" id="colorOption1" class="mdl-radio__button" name="colorOptions" value="1" checked>
<span class="mdl-radio__label">Plain</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="colorOption2">
<input type="radio" id="colorOption2" class="mdl-radio__button" name="colorOptions" value="2">
<span class="mdl-radio__label">Length to Color</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="colorOption3">
<input type="radio" id="colorOption3" class="mdl-radio__button" name="colorOptions" value="3">
<span class="mdl-radio__label">Length to Opacity</span>
</label>
<div class="mdl-layout-spacer"></div>
<a class="mdl-navigation__link" href="http://leevilehtonen.com">@leevilehtonen</a>
</nav>
</div>
<main class="mdl-layout__content">
<div class="page-content">
<canvas id="paperCanvas" resize="true"></canvas>
</div>
</main>
</div>
<script src="js/vendor/modernizr-3.5.0.min.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-3.2.1.min.js"><\/script>')</script>
<script src="js/plugins.js"></script>
<script src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<script src="js/vendor/paper-full.min.js"></script>
<script src="js/main.js"></script>
<script src="js/canvas.js" canvas="paperCanvas"></script>
</body>
</html>