ycategories-presentation/introduction/index.html
2011-08-11 13:31:32 +08:00

205 lines
7.5 KiB
HTML

<!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>Getting Started with Deck JS</title>
<meta name="description" content="A jQuery library for modern HTML presentations">
<meta name="author" content="Caleb Troughton">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Core and extension CSS files -->
<link rel="stylesheet" href="../core/deck.core.css">
<link rel="stylesheet" href="../extensions/goto/deck.goto.css">
<link rel="stylesheet" href="../extensions/menu/deck.menu.css">
<link rel="stylesheet" href="../extensions/navigation/deck.navigation.css">
<link rel="stylesheet" href="../extensions/status/deck.status.css">
<!-- Theme CSS files (menu swaps these out) -->
<link rel="stylesheet" id="style-theme-link" href="../themes/style/web-2.0.css">
<link rel="stylesheet" id="transition-theme-link" href="../themes/transition/horizontal-slide.css">
<!-- Custom CSS just for this page -->
<link rel="stylesheet" href="introduction.css">
<script src="../modernizr.custom.js"></script>
</head>
<body class="deck-container">
<div class="theme-menu">
<h2>Themes</h2>
<label for="style-themes">Style:</label>
<select id="style-themes">
<option selected value="../themes/style/web-2.0.css">Web 2.0</option>
<option value="../themes/style/swiss.css">Swiss</option>
<option value="../themes/style/neon.css">Neon</option>
<option value="">None</option>
</select>
<label for="transition-themes">Transition:</label>
<select id="transition-themes">
<option selected value="../themes/transition/horizontal-slide.css">Horizontal Slide</option>
<option value="../themes/transition/vertical-slide.css">Vertical Slide</option>
<option value="../themes/transition/fade.css">Fade</option>
<option value="">None</option>
</select>
</div>
<div class="slide">
<h1>Getting Started with Deck JS</h1>
</div>
<div class="slide">
<h2>How to Make a Deck</h2>
<ol>
<li>
<h3>Write Slides</h3>
<p>Slide content is simple HTML.</p>
</li>
<li>
<h3>Choose Themes</h3>
<p>One for slide styles and one for deck transitions.</p>
</li>
<li>
<h3>Include Extensions</h3>
<p>Add extra functionality to your deck, or leave it stripped down.</p>
</li>
</ol>
</div>
<div class="slide">
<h2>The Markup</h2>
<p>Slides are just HTML elements with a class of <code>slide</code>.</p>
<pre><code>&lt;div class=&quot;slide&quot;&gt;
&lt;h2&gt;Your Typical Deck&lt;/h2&gt;
&lt;h3&gt;Consists of:&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Slides in the form of HTML&lt;/li&gt;
&lt;li&gt;The core Deck JS and CSS files&lt;/li&gt;
&lt;li&gt;A style theme and transition theme&lt;/li&gt;
&lt;li&gt;Any desired extenstions&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</code></pre>
</div>
<div class="slide">
<h2>Style Themes</h2>
<p>Customizes the colors, typography, and layout of slide content.</p>
<pre><code>&lt;link rel=&quot;stylesheet&quot; href=&quot;/path/to/css/style-theme.css&quot;&gt;</code></pre>
<h2>Transition Themes</h2>
<p>Defines transitions between slides using CSS3 transitions. Less capable browsers fall back to cutaways. But <strong>you</strong> aren&rsquo;t using <em>those</em> browsers to give your presentations, are you&hellip;</p>
<pre><code>&lt;link rel=&quot;stylesheet&quot; href=&quot;/path/to/css/transition-theme.css&quot;&gt;</code></pre>
</div>
<div class="slide">
<h2>Extensions</h2>
<p>Deck Core gives you basic slide functionality with left and right arrow navigation, but you may want more.</p>
<ul>
<li class="slide">
<p><strong>deck.goto</strong>: Adds a shortcut key to jump to any slide number. Hit g, type in the slide number, and hit enter.</p>
</li>
<li class="slide">
<p><strong>deck.menu</strong>: Adds a menu view, letting you see all slides in a grid. Hit m to toggle to menu view, continue navigating your deck, and hit m to return to normal view.</p>
</li>
<li class="slide">
<p><strong>deck.navigation</strong>: Adds clickable left and right buttons for the less keyboard inclined.</p>
</li>
<li class="slide">
<p><strong>deck.status</strong>: Adds a page number indicator. (current/total)</p>
</li>
</ul>
</div>
<div class="slide">
<h2>Nested Slides</h2>
<p>That last slide had a few steps. To create substeps in slides, just nest them:</p>
<pre><code>&lt;div class=&quot;slide&quot;&gt;
&lt;h2&gt;Extensions&lt;/h2&gt;
&lt;p&gt;Deck Core gives you basic slide functionality...&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;slide&quot;&gt;
&lt;h3&gt;deck.goto&lt;/h3&gt;
&lt;p&gt;Adds a shortcut key to jump to any slide number...&lt;/p&gt;
&lt;/li&gt;
&lt;li class=&quot;slide&quot;&gt;...&lt;/li&gt;
&lt;li class=&quot;slide&quot;&gt;...&lt;/li&gt;
&lt;li class=&quot;slide&quot;&gt;...&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</code></pre>
</div>
<div class="slide">
<h2>Other Elements: Images</h2>
<img src="http://placekitten.com/600/375" alt="Kitties">
<pre><code>&lt;img src=&quot;http://placekitten.com/600/375&quot; alt=&quot;Kitties&quot;&gt;</code></pre>
</div>
<div class="slide">
<h2>Other Elements: Blockquotes</h2>
<blockquote cite="http://example.org">
<p>Food is an important part of a balanced diet.</p>
<p><cite>Fran Lebowitz</cite></p>
</blockquote>
<pre><code>&lt;blockquote cite=&quot;http://example.org&quot;&gt;
&lt;p&gt;Food is an important part of a balanced diet.&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;Fran Lebowitz&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;</code></pre>
</div>
<div class="slide">
<h2>Other Elements: Video Embeds</h2>
<p>Embed videos using embed codes from your favorite online video service or with an HTML5 video element.</p>
<iframe src="http://player.vimeo.com/video/1063136?title=0&amp;byline=0&amp;portrait=0" width="400" height="225" frameborder="0"></iframe>
<pre><code>&lt;iframe src=&quot;http://player.vimeo.com/video/1063136?title=0&amp;amp;byline=0&amp;amp;portrait=0&quot; width=&quot;400&quot; height=&quot;225&quot; frameborder=&quot;0&quot;&gt;&lt;/iframe&gt;</code></pre>
</div>
<div class="slide">
<h2>Digging Deeper</h2>
<p>If you want to learn about making your own themes, extending Deck JS, and more, check out the <a href="../docs/">Deck JS Docs</a>.</p>
</div>
<a href="#" class="deck-prev-link" title="Previous">&laquo;</a>
<a href="#" class="deck-next-link" title="Next">&raquo;</a>
<p class="deck-status">
<span class="deck-status-current"></span>
/
<span class="deck-status-total"></span>
</p>
<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>
<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>
<!-- Deck Core and extensions -->
<script src="../core/deck.core.js"></script>
<script src="../extensions/menu/deck.menu.js"></script>
<script src="../extensions/goto/deck.goto.js"></script>
<script src="../extensions/status/deck.status.js"></script>
<script src="../extensions/navigation/deck.navigation.js"></script>
<!-- Specific to this page -->
<script src="introduction.js"></script>
</body>
</html>