-
Notifications
You must be signed in to change notification settings - Fork 0
/
canvas.html
41 lines (40 loc) · 958 Bytes
/
canvas.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Style to get a black border around the kiosk window -->
<!-- None of this is working... -->
<style>
canvas {
border: 0px solid black;
}
html, body, webview {
margin: 0;
padding: 0;
border: 0;
display: block;
width: 100%;
height: 100%;
}
html {
background-color: #000000;
}
body {overflow: hidden;}
#container:fullscreen {
background-color: rgba(0,0,0,0);
}
#container:-webkit-fullscreen {
background-color: rgba(0,0,0,0);
}
#container:-moz-fullscreen {
background-color: rgba(0,0,0,0);
}
</style>
<script>setTimeout(function(){window.location.href='weather.html'},5*60*1000);</script>
<script src="slidelist.js"></script>
<script src="canvas-slideshow.js"></script>
</head>
<body>
<canvas id="mainimage" width="800" height="480"></canvas>
</body>
</html>