-
Notifications
You must be signed in to change notification settings - Fork 508
/
index.html
31 lines (29 loc) · 1.23 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Web Workers example</title>
<link href='http://fonts.googleapis.com/css?family=Slabo+27px' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/styles.css">
<script src="scripts/imageManips.js"></script>
</head>
<body>
<p class="header"><img class="udacity" src="http://udacity.github.io/60fps/images/udacity_logo.svg" alt="Udacity Logo"><a href="http://udacity.com/ud860" target="_blank">60FPS</a> quiz by <a href="http://twitter.com/cwpittman" target="_blank">Cameron Pittman</a></p>
<div class="container">
<div class="half" id="time-animation">
<h2>Jank Timer</h2>
</div>
<div class="half" id="image-manipulator">
<h2>Image Manipulator</h2>
<input type="file" id="imageLoader" name="imageLoader"/>
<button id="invert">Invert</button>
<button id="chroma">Chroma</button>
<button id="greyscale">Greyscale</button>
<button id="vibrant">Vibrant</button>
<button id="revert">Revert to Original</button>
<canvas id="image"></canvas>
</div>
</div>
<script src="scripts/time-animator.js"></script>
<script src="scripts/image-app.js"></script>
</body>
</html>