-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (55 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>PXL v0.1</title>
<meta http-equiv="refresh" content="3600">
<meta name="gtv-autozoom" content="off" />
<meta name=apple-mobile-web-app-capable content=yes />
<meta name=apple-mobile-web-app-status-bar-style content=black-translucent />
<meta name=viewport content=width=device-width />
<meta name=viewport content=user-scalable=no />
<style type="text/css">
body {
margin: 0;
}
.hideMe {
display: none;
}
#targetHolder {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
z-index: 1000;
}
img#holder {
width: 140px;
height: 84px;
background: #999;
}
#targetCanvas {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
z-index: 1000;
}
</style>
</head>
<body>
<div id="hiddenStuff">
<div id="targetHolder">
</div>
<canvas id="sourceCanvas" width="140" height="84"></canvas>
</div>
<script src="jquery.min.js"></script>
<script src="aesthetic.js?v=0.6.5"></script>
<script>
$(document).ready(function() {
aesthetic.loadimage('frog2.jpg');
});
</script>
</body>
</html>