-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm~
57 lines (51 loc) · 1.38 KB
/
index.htm~
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
54
55
56
<html>
<head>
<title>Slideshow</title>
<link href="slideshow.css" rel="stylesheet" type="text/css" />
<link href="style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="slideshow.js"></script>
</head>
<body onload="load()" onkeydown="slideControl(event)">
<div class="presentation">
<article class="slides">
<section class="slide" id="landing-slide">
test 1
<aside class="note">
Speaker notes 1!
</aside>
</section>
<section class="slide" id="landing-slide-2">
test 2
<aside class="note">
Speaker notes 2!
</aside>
</section>
<section class="slide" id="landing-slide-3">
test 3
<aside class="note">
Speaker notes 3!
</aside>
</section>
</article> <!-- end article class "slides" -->
<div class="menus">
<aside class="controls">
<div onclick="previousSlide()">
Back
</div>
<div onclick="nextSlide()" >
Next
</div>
<div onclick="" >
Home
</div>
</aside> <!-- end article class "controls" -->
<aside class="help">
Use arrows to navigate.<br/>
'H' toggles help pane.<br/>
'C' toggles clickable controls.<br/>
Spacebar animates slide actions.<br/>
</aside> <!-- end aside class "help" -->
</div> <!-- end div class "menus" -->
</div> <!-- end div class "presentation" -->
</body>
</html>