-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.html
52 lines (47 loc) · 1.17 KB
/
test.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<script>window.currentScene = 'Test'</script>
<script src='dist/app.js'></script>
<style>
body {
margin: 0;
background: grey;
}
#controls {
color: white;
}
#wrap {
width: 1280px;
height: 720px;
padding: 0;
overflow: hidden;
border: 2px solid grey;
}
#frame {
width: 1920px;
height: 1080px;
border: 0;
background: white;
}
#frame {
zoom: 0.333;
transform: scale(0.333);
transform-origin: 0 0;
}
</style>
</head>
<body>
<form action='test.html' method='get' id='controls'>
Session: <select name='stream' id='stream'></select>
Scene: <select name='pageSel' id='pageSel'></select>
Program Point: <select name='index' id='index'></select>
Countdown: <span id='countdown'></span>
<input type='submit' value='Reload'>
</form>
<div id="wrap">
<iframe id="frame"></iframe>
</div>
</body>
</html>