forked from LeaVerou/inspire.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
192 lines (173 loc) · 7.58 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<title>CSSS: A brief introduction</title>
<link href="slideshow.css" rel="stylesheet" />
<link href="theme.css" rel="stylesheet" />
<link href="sample-slideshow.css" rel="stylesheet" />
</head>
<body data-duration="10">
<header id="intro" class="slide">
<h1>
<object data="logo.svg" width="100%" type="image/svg+xml">
<img src="logo.png" alt="CSSS: CSS-based SlideShow System" />
</object>
</h1>
<p class="attribution">By Lea Verou</p>
</header>
<div class="slide" title="CSSS: Introduction">
<h2>What is it?</h2>
<p>A simple framework for building presentations with modern web standards</p>
<ul>
<li class="delayed">An HTML file contains the whole presentation</li>
<li class="delayed">Themes as CSS files</li>
<li class="delayed">JavaScript handles what CSS can't (keyboard shortcuts etc)</li>
</ul>
</div>
<div class="slide">
<h2>History</h2>
<ul>
<li class="delayed">I had to create a presentation for my talk at <a href="http://front-trends.com">Front Trends 2010</a></li>
<li class="delayed">The only web-based presentation system I knew of was the <a href="http://slides.html5rocks.com/">HTML5 presentation by Marcin Wichary</a> which didn't fit my needs</li>
<li class="delayed">…so I rolled up my own</li>
<li class="delayed">FT2010 attendees asked me to release it</li>
<li class="delayed">and here it is! ;-)</li>
</ul>
</div>
<div class="slide">
<h2>What about S5?</h2>
<ul>
<li class="delayed">I found out about <a href="http://meyerweb.com/eric/tools/s5/">S5</a> afterwards, via <a href="http://tantek.com">Tantek Çelik</a></li>
<li class="delayed">Seems to follow a similar approach to CSSS…</li>
<li class="delayed">…but does a few things differently</li>
<li class="delayed">So I guess even if I knew, I would still make my own</li>
<li class="delayed">but take a look at it too, it's really good!</li>
</ul>
</div>
<div class="slide" id="navigation">
<h2>Navigation</h2>
<ul>
<li>→ or ↓ to advance to the next slide or incrementally displayed item</li>
<li>← or ↑ to go to the previous slide or incrementally displayed item</li>
<li>Ctrl* + → or Ctrl* + ↓ to jump to the next slide</li>
<li>Ctrl* + ← or Ctrl* + ↑ to jump to the previous slide</li>
<li>Home to go to the first slide, End to go to the last</li>
<li>Ctrl* + G to jump to an arbitrary slide (by slide number or identifier)</li>
<li>Ctrl* + H to see thumbnails of the header slides and jump to one of them (Ctrl+Shift+H to see all slides, warning: can be slow)</li>
</ul>
<p>* Ctrl or Shift actually. Only Shift works in Opera.</p>
</div>
<div class="slide" id="features">
<h2>Features</h2>
<ul>
<li class="delayed">IDs are dynamically assigned by JavaScript…</li>
<li class="delayed">…but you can also assign your own, bringing the best of both worlds</li>
<li class="delayed">Incremental display of slide contents (just add <code>class="delayed"</code>)</li>
<li class="delayed">Slide scaling based on window size (size everything you want to be scalable in ems)</li>
<li class="delayed">Document.title changing according to slide title (fetched either from the <code>title</code> attribute or the slide's heading)</li>
</ul>
</div>
<div class="slide">
<h2>Drawbacks</h2>
<ul>
<li>Only supports Firefox 3.6+, the latest Chrome/Safari or Opera 10.60+. Why?
<ul>
<li>More lightweight</li>
<li>Easier to understand code</li>
<li>It's a presentation, so the environment is controlled anyway</li>
</ul>
</li>
<li>No mouse click to advance to the next slide. I consider it annoying.</li>
</ul>
</div>
<div class="slide">
<h2>Timer</h2>
<ul>
<li>Timer in the form of a progress bar on the top</li>
<li>Define the talk duration with the attribute <code>data-duration</code> on the <code>body</code></li>
<li>Style the timer and the end state with the selectors <code>#timer</code> and <code>#timer.end</code> respectively.</li>
</ul>
</div>
<div class="slide">
<h2>Presenter view</h2>
<p>This slide has presenter notes. They are only visible in presenter view (Ctrl+P or Shift+P).</p>
<p class="presenter-notes">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
<div class="slide">
<h2>Plugin: CSS Snippets</h2>
<pre>new CSSSnippet(document.getElementById('snippet'));</pre>
<ul>
<li>Dynamically edit CSS and reflect the results in any element's style
<ul>
<li>Which one? Specify a selector with the <code>data-subject</code> attribute or leave blank for the slide to be the subject</li>
</ul>
<li>Automatically prefixes CSS3 properties/values, when needed
<ul>
<li>Also does it with the style attribute (statically) if the element is not a text field (doesn't work in IE and Firefox 3.6)</li>
</ul>
</li>
<li>Textarea automatically adjusts rows/font-size on line break (use class <code>dont-adjust</code> to turn off)</li>
</ul>
</div>
<div class="slide">
<h2>CSS Snippets demo</h2>
<p>Edit the following CSS code:</p>
<textarea id="snippet">background-color:red;
background-image: linear-gradient(red, #600)</textarea>
</div>
<div class="slide">
<h2>Plugin: CSS Controls</h2>
<ul>
<li>Use sliders and other controls to adjust CSS values
<ul>
<li>Which one? Specify a selector with the <code>data-subject</code> attribute or leave blank for the slide to be the subject</li>
<li>Specify style with <code>data-style</code> (use <code>{value}</code> where the result will be)</li>
</ul>
<li>Automatically prefixes CSS3 properties/values, when needed</li>
</ul>
</div>
<div class="slide" id="css-controls-demo">
<h2>CSS Controls demo</h2>
<label>Slide lightness:
<input type="range" min="0" max="255" value="128" data-style="background-color:rgb({value}, {value}, {value});" class="css-control" />
</label>
<label>
border-width:
<input type="number" min="0" max="60" value="30" data-style="border-width: {value}px;" class="css-control" size="5" />
</label>
<label>
font-family:
<select data-style="font-family: {value};" class="css-control">
<option selected>sans-serif</option>
<option>Georgia, serif</option>
<option>Consolas, monospace</option>
<option>'Trebuchet MS', sans-serif</option>
</select>
</label>
</div>
<div class="slide" title="The End">
<h2>Thank you!</h2>
<p>Get it or contribute at <a href="http://github.com/LeaVerou/CSSS">http://github.com/LeaVerou/CSSS</a></p>
<p>Credits:</p>
<ul>
<li><a href="http://lukeroberts.us/2008/12/wallpaper-colourful-wood/">Colored wood background by Luke Roberts</a></li>
<li>The name CSSS is actually inspired by S5, as you could probably guess ;-)</li>
<li>A big thanks to the community at Github for various contributions to this project</li>
</ul>
</div>
<script src="slideshow.js"></script>
<script src="plugins/css-edit.js"></script>
<script src="plugins/css-snippets.js"></script>
<script src="plugins/css-controls.js"></script>
<script>
var slideshow = new SlideShow();
new CSSSnippet(document.getElementById('snippet'));
var cssControls = document.querySelectorAll('.css-control');
for(var i=0; i<cssControls.length; i++) {
new CSSControl(cssControls[i]);
}
</script>
</body>
</html>