-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
166 lines (166 loc) · 5.1 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="javascripts/slides.js"></script>
<link href="stylesheets/slides.css" rel="stylesheet">
<link href="stylesheets/themes/basic.css" rel="stylesheet">
<link href="stylesheets/custom.css" rel="stylesheet">
<title>Twitning Talks</title>
<script>
if (typeof jQuery == 'undefined') {
alert('Could not load jQuery from Google. Check your Internet connection or install jQuery directly into your javascripts directory. Without jQuery, this slideshow will have layout and behavior errors.');
}
</script>
</head>
<body>
<div id="slideshow">
<section>
<h1>Twitning Talks</h1>
<h2>Insanely Short Presentations</h2>
<button id="play">PLAY ▶</button>
</section>
<section>
<header><h1>Key Navigation</h1></header>
<table>
<tr>
<td class="key">ESC</td>
<td>pause the presentation</td>
</tr>
<tr>
<td class="key">→ or SPACE</td>
<td>next slide</td>
</tr>
<tr>
<td class="key">←</td>
<td>previous slide</td>
</tr>
<tr>
<td class="key">SHIFT + CMD + F</td>
<td>toggle full screen</td>
</tr>
</table>
</section>
<section class="section_intro">
<h1>Part I</h1>
<h2>About Twitning Talks</h2>
</section>
<section>
<header><h1>About Twitning Talks</h1></header>
<ul>
<li>
Twitning is a portmanteau of Twitter and lightning.
</li>
<li>
Twitning talks are lightning talks that must not exceed 1:40.
</li>
<li>
They are inspired by Ignite presentations.
</li>
</ul>
<footer>
Disclaimer: Twitning talks are not affiliated with Twitter.
</footer>
</section>
<section>
<header><h1>About Twitning Talks</h1></header>
<ul>
<li>
A twitning talk consists of 10 slides.
</li>
<li>
Each slide autoadvances every 10 seconds.
</li>
</ul>
</section>
<section class="section_intro">
<h1>Part II</h1>
<h2>Creating a Twitning Talk</h2>
</section>
<section>
<header><h1>Creating a Twitning Talk</h1></header>
<ul>
<li>
To create a twitning talk, fork this code on github.
</li>
<li>
Replace the contents of index.html with the contents of your slideshow.
</li>
<li>
This code comes with a default CSS theme, basic.css.
</li>
<li>
Add your own style tweaks to custom.css. Or you can create
a completely new CSS theme.
</li>
</ul>
</section>
<section>
<header><h1>Creating a Twitning Talk</h1></header>
<ul>
<li>
This slideshow is only targeted at Chrome and Firefox.
It works reasonably well in Safari and Opera, but Safari does
not have fullscreen mode.
</li>
<li>
Your presentation should actually have twelve slides: a title slide,
ten presentation slides,
and an ending slide. When the ending slide displays, your time
is up (you do not have 10 seconds for the ending slide).
</li>
<li>
Avoid putting content on the bottom third of the screen. This
bullet point is too low and much of the audience won't be
able to read it.
</li>
</ul>
</section>
<section class="section_intro">
<h1>Part III</h1>
<h2>Sample Page Layouts</h2>
</section>
<section>
<header><h1>Header</h1></header>
<p>
This demonstrates a page with a header and a paragraph of text.
</p>
</section>
<section>
<header><h1>Code</h1></header>
<p>
This demonstrates a page containing code.
</p>
<pre>
def display_dependency_tree
displayable_tasks = tasks.select do |t|
t.comment && t.name =~ options.show_task_pattern
end
for task in displayable_tasks
$indent = 0
puts task.name
display_dependent_tasks(task)
end
end
</pre>
</section>
<section id="image_background">
<header><h1>Image</h1></header>
<img src="images/tigers.jpg" />
</section>
<section>
<header><h1>Image</h1></header>
<p>
Note that it's not straightforward to use an image as the background of
a slide, since the slide dimensions are the screen resolution and
you don't know them ahead of time. It's possible to accomplish this, however,
with JavaScript.
</p>
</section>
<section id="last_slide">
<h1>Process.exit!</h1>
</section>
</div>
</body>
</html>