forked from imakewebthings/deck.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
145 lines (120 loc) · 5.43 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js ie6" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>deck.js » Modern HTML Presentations</title>
<meta name="description" content="A jQuery library for modern HTML presentations">
<meta name="author" content="Caleb Troughton">
<meta name="viewport" content="width=960">
<link rel="stylesheet" href="./core/deck.core.css">
<link rel="stylesheet" href="./css/common.css">
<link rel="stylesheet" href="./css/home.css">
<script src="modernizr.custom.js"></script>
</head>
<body class="home">
<header>
<nav>
<h1><a href=".">slides.stefan-weigand.de</a></h1>
<ul>
<li><a href="./introduction">Getting Started</a></li>
<li><a href="./docs">Docs</a></li>
<li><a href="http://github.com/housemaister/deck.js">GitHub</a></li>
</ul>
</nav>
</header>
<article>
<section class="slide deck-current" id="intro">
<div>
<hgroup>
<h1>deck.js</h1>
<h2>Modern HTML Presentations</h2>
</hgroup>
<p>
<a href="https://github.com/imakewebthings/deck.js/zipball/master" class="download">Download</a>
or <a href="#sample" class="next">→</a> to learn more.
</p>
<p>
<a href="./test-slides">Test Slides</a>
</p>
</div>
</section>
<section class="slide deck-next" id="sample">
<pre><code><body class="deck-container<span class="deck-state"> on-slide-1</span>">
<div class="slide<span class="slide-state"> deck-previous</span>">
<h1>My Presentation</h1>
</div>
<span class="example-current"><div class="slide<span class="slide-state"> deck-current</span>">
<h2>Slide Header</h2>
<p>Here is a list of points:</p>
<ul>
<li>Point 1</li>
<li>Point 2</li>
<li>Point 3</li>
</ul>
</div></span>
<span class="example-next"><div class="slide<span class="slide-state"> deck-next</span>">
<h2>Another Slide</h2>
<blockquote cite="http://example.com">
<p>Lorem ipsum dolor sit amet.</p>
<p><cite>Cicero</cite></p>
</blockquote>
</div></span>
</body></code></pre>
<h2>How Does It Work?</h2>
<div class="sample-content">
<p class="slide" id="slides-html">Slides are basic HTML.</p>
<p class="slide" id="slide-states">The <a href="./docs/#deck-core">deck.core</a> module keeps track of slide states</span> <span class="slide" id="deck-states">and deck states</span><span class="slide" id="css-role">, leaving CSS to define what each state looks like…</span></p>
<p class="slide" id="css-transition">…and how to transition between them.</p>
<p class="slide" id="extensions"><a href="./introduction/#extensions">Extensions</a> use core <a href="./docs/#deck-core-events">events</a> and <a href="./docs/#deck-core-methods">methods</a> to add goodies<span class="slide" id="add-what-you-want">, giving presenters the freedom to add what they want</span><span class="slide" id="leave-stuff-out"> and leave out what they don’t.</span></p>
</div>
</section>
<section class="slide deck-after" id="now-what">
<h2>Great. Now What?</h2>
<div class="personas">
<div class="slide" id="noob">
<h3>Only Know HTML?</h3>
<p>Use included premade themes and templates to start making your deck immediately.</p>
<p><a class="cta" href="./introduction">Get Started</a></p>
</div>
<div class="slide" id="badass">
<h3>CSS+JS Badass?</h3>
<p>Make custom decks with the API exposed by the core and extensions.</p>
<p><a class="cta" href="./docs">View Docs</a></p>
</div>
<div class="slide" id="in-between">
<h3>Something In-between?</h3>
<p>Take a little from both worlds. Tweak a theme, hack an extension, or write some of your own.</p>
</div>
</div>
<p class="slide" id="download-now"><a href="https://github.com/imakewebthings/deck.js/zipball/master" class="download">Download</a></p>
</section>
<form action="." method="get" class="goto-form">
<label for="goto-slide">Go to slide:</label>
<input type="number" name="slidenum" id="goto-slide">
<input type="submit" value="Go">
</form>
<a href="#" class="deck-prev-link" title="Previous">←</a>
<a href="#" class="deck-next-link" title="Next">→</a>
<p class="deck-status">
<span class="deck-status-current"></span>
/
<span class="deck-status-total"></span>
</p>
</article>
<footer>
<p>Original project of <a href="http://imakewebthings.com">I Make Web Things</a></p>
</footer>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.js"></script>
<script>window.jQuery || document.write('<script src="//ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.1.min.js">\x3C/script>')</script>
<script src="./core/deck.core.js"></script>
<script src="./extensions/goto/deck.goto.js"></script>
<script src="./extensions/navigation/deck.navigation.js"></script>
<script src="./extensions/status/deck.status.js"></script>
<script src="./extensions/hash/deck.hash.js"></script>
<script src="home.js"></script>
</body>
</html>