-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 1 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>
<head>
<title>Halftone | Javascript experiment which converts a live video stream into halftones</title>
<style>
canvas.renderer {
width: 100%;
height: 100%;
}
div#viewport {
width: 1280px;
height: 720px;
background-color: #eeeeee;
}
</style>
</head>
<body>
<h1>Halftone</h1>
<p>Javascript experiment which converts a live video stream into halftones</p>
<div id="viewport"></div>
<br/>
<button id="redrawFrame">Redraw Frame</button>
<button id="updateFrame">Log Last Frame</button>
<button id="updateDiff">Log Last Diff</button>
<p>Check out the <a href="http://brettcrowell.github.io/Halftone/demo/index.html">project homepage</a>.</p>
<p>Check out the <a href="https://github.com/brettcrowell/Halftone">source code on GitHub</a>.</p>
<p>Copyright 2014 Brett Crowell</p>
<script type="text/javascript" src="./assets/halftone.js"></script>
</body>
</html>