-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
99 lines (89 loc) · 2.8 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Slide</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="slide.css" media="screen">
<script src="lib/jquery-1.9.0.min.js"></script>
<script src="lib/jquery-ui-1.10.0.custom.min.js"></script>
<script src="slide.js"></script>
<script id="touch-template" type="template">
<div id="touch">
<button id="start">start presentation</button>
<button id="done">done</button>
<button id="prev">prev</button>
<button id="next">next</button>
</div>
</script>
</head>
<body>
<div id="wrapper">
<div class="slide">
<h1>
<style>
/* I like to put slide-specific hacks in the slide,
which I'd never do in a webapp of course ;) */
#logoLeft {
float: left;
}
#logoRight {
float: right;
}
#logoLeft, #logoRight {
max-width: 25%;
}
</style>
<img id="logoLeft" src="images/tylerdurden.png">
Slide
<img id="logoRight" src="images/powerpenguin.png">
</h1>
<h2>JavaScript slides without pain</h2>
<p>
Slide makes a presentation out of a normal webpage. You can
scroll it, print it, and view it on any device.
</p>
<p>
Want to try it? Try pressing escape on the nearest keyboard. Then use the arrow keys.
</p>
</div>
<div class="slide">
<h1>Hash location support</h1>
<p>
When you share the URL it'll point to the current slide.
</p>
</div>
<div class="slide">
<h1>You're not screwed if a slide is too long</h1>
<p>
Just scroll down.
</p>
<img src="images/longcat.jpg">
</div>
<div class="slide">
<h1>Easy to theme</h1>
<p>
Slide doesn't do anything hacky that makes it fragile when you're trying to tweak it. You can just throw in any old style and it'll work.
</p>
</div>
<div class="slide">
<h1>Mobile + Touch</h1>
<img src="images/iphone5.png">
</div>
<div class="slide" id="i-have-a-custom-id-just-for-fun">
<h1>Cool, eh?</h1>
<p>
You can press escape again to go back to viewing this presentation as a normal webpage.
</p>
</div>
<div class="slide">
<h1>Made by Greg Smith</h1>
<ul>
<li><a href="http://incompl.com">about me</a></li>
<li>i work at <a href="http://bocoup.com">bocoup</a></li>
<li><a href="https://github.com/incompl/slide">download / contribute on github</a></li>
</ul>
</div>
</div>
</body>
</html>