-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
23 lines (23 loc) · 853 Bytes
/
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
<html>
<head>
<title>Glitch Test - Simulating transmission glitch (whole page)</title>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<script type="text/javascript" src="html2canvas.js"></script>
<script type="text/javascript" src="glitch-lib.js"></script>
<script type="text/javascript" src="glitch-execute.js"></script>
</head>
<body>
<img src="lenna.png" />
<img src="lenna.png" />
<br>
<img src="lenna.png" />
<img src="lenna.png" />
<script type="text/javascript">
window.onload = function() {
var gl = Object.create(glitch_exec);
gl.start(document.body);
}
</script>
</body>
</html>