-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathindex3.html
More file actions
27 lines (27 loc) · 1.01 KB
/
Copy pathindex3.html
File metadata and controls
27 lines (27 loc) · 1.01 KB
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
<html>
<head>
<title>Glitch Test - Simulate transmission glitch (whole page) - with stop callback</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.GLITCH_RENDER_COUNT = 3;
gl.done_callback = function() {
alert("Stopped Glitching");
}
gl.start(document.body);
}
</script>
</body>
</html>