-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·32 lines (27 loc) · 1.15 KB
/
index.html
File metadata and controls
executable file
·32 lines (27 loc) · 1.15 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Pictures slideshow</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<script src="main.js"></script>
</head>
<body>
<h1>Pictures Slideshow</h1>
<div class="container">
<div class="canvasContent">
<button class="arrows" id="backButton"><</button>
<canvas id="slideshow" width="1000" height="664"></canvas>
<button class="arrows" id="forwardButton">></button>
</div>
<div class="controlMenu">
<button class="controlButtons" id="startStopButton">Start</button>
<button class="controlButtons" id="randomSequentialButton">Random</button>
<button class="controlButtons" id="backwardForwardButton">Backward</button>
<label>Speed 1 sec</label><input type="range" class="effects" id="slideshowSpeed" min="1" max="20" step="1" value="3" /><label>20 sec</label>
</div>
</div>
</body>
</html>