-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·40 lines (38 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="shortcut icon" href="#" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div id="logo" class="UI">
<img src="media/bg.png" class="logoImg" />
<div class="inputDiv">
<div id="info" class="text">
Drag and drop media files here..
</div>
<div id="info" class="text">
Set how long before we go to the next slide
</div>
<input type="number" placeholder="2" id="slidesInterval" / >
<div id="info" class="text">
Run Slideshow!
</div>
<input
type="button"
value="Run Slideshow"
onclick="togglePlayPause()"
/>
<a
href="https://github.com/CityScope/CS_keystoner/"
target="_blank"
>
<img src="media/logosWhite.png" class="CSlogoImg" />
</a>
</div>
</div>
</body>
<script src="keystoner/maptastic.js"></script>
<script src="keystoner/gallery.js"></script>
</html>