-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcinema_view.html
53 lines (47 loc) · 1.56 KB
/
cinema_view.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
<!doctype html>
<html>
<head>
<meta app="Cinema:View" version="2.2">
<meta charset="utf-8">
<link rel='stylesheet' href='cinema/lib/2.2/common.css'>
<link rel="stylesheet" href="cinema/view/2.2/css/select-css.css">
<link rel="stylesheet" href="cinema/view/2.2/css/range-css.css">
<!-- Begin: Cinema Local File Install -->
<!--
<script src='cinema/lib/d3.v4.min.js'></script>
-->
<!-- End: Cinema Local File Install -->
<!-- Begin: Cinema External Access Install -->
<script src="https://d3js.org/d3.v4.min.js"></script>
<!-- End: Cinema External Access Install -->
</head>
<body>
<div class="container">
<header>
<!-- Begin: Cinema Viewer Title -->
Cinema:View
<!-- End: Cinema Viewer Title -->
</header>
<div id="resultsArea">
<div class="imageArea flex-container" id="imageArea"></div>
<div class="sliderArea">
<div id="delectDB">
<p> Select Dataset:
<select id="dbList" class="select-css" onchange="optionSelected();">
</select>
</p>
</div>
<div id="imgSize">
<p>Image Size:</p>
<input type="range" min="1" max="100" id="imageSize" class="slidecontainer" step="1">
</div>
<div id="sliderContainer" class="sliderContainer">
</div>
</div>
</div>
<footer><img src="cinema/lib/2.2/img/cinema_logo_filmreel_named_100px_white.png" height=30px></img></footer>
</div>
<script src="cinema/lib/2.2/databases.js"></script>
<script src="cinema/view/2.2/main.js"></script>
</body>
</html>