15
deck.js Modern HTML Presentations Download or to learn more. deck.js Getting Started Docs GitHub 1.1.0 A project of I Make Web Things

deck.js Download or to learn more - GitHub Pages · deck.js M o d e r n H T M L P r e s e n t a t i o n s Download or → to learn more . deck.js Getting Sta rted Docs GitHub 1.1.0

  • Upload
    others

  • View
    1

  • Download
    0

Embed Size (px)

Citation preview

Page 2: deck.js Download or to learn more - GitHub Pages · deck.js M o d e r n H T M L P r e s e n t a t i o n s Download or → to learn more . deck.js Getting Sta rted Docs GitHub 1.1.0

How Does It Work?<div class="deck­container">   <section class="slide">     <h1>My Presentation</h1>   </section> 

  <section class="slide">     <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>   </section> 

  <section class="slide">     <h2>Another Slide</h2>     <blockquote cite="http://example.com">       <p>Lorem ipsum dolor sit amet.</p>       <p><cite>Cicero</cite></p>     </blockquote>   </section> </div>

Use arrow keys to navigate

deck.js Getting Started Docs GitHub

1.1.0 A project of I Make Web Things

Page 3: deck.js Download or to learn more - GitHub Pages · deck.js M o d e r n H T M L P r e s e n t a t i o n s Download or → to learn more . deck.js Getting Sta rted Docs GitHub 1.1.0

How Does It Work?Slides are basic HTML.

<div class="deck­container">   <section class="slide">     <h1>My Presentation</h1>   </section> 

  <section class="slide">     <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>   </section> 

  <section class="slide">     <h2>Another Slide</h2>     <blockquote cite="http://example.com">       <p>Lorem ipsum dolor sit amet.</p>       <p><cite>Cicero</cite></p>     </blockquote>   </section> </div>

deck.js Getting Started Docs GitHub

1.1.0 A project of I Make Web Things

Page 4: deck.js Download or to learn more - GitHub Pages · deck.js M o d e r n H T M L P r e s e n t a t i o n s Download or → to learn more . deck.js Getting Sta rted Docs GitHub 1.1.0

How Does It Work?Slides are basic HTML.

The deck.core module keeps track of slide states

<div class="deck­container">   <section class="slide deck­previous">     <h1>My Presentation</h1>   </section> 

  <section class="slide deck­current">     <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>   </section> 

  <section class="slide deck­next">     <h2>Another Slide</h2>     <blockquote cite="http://example.com">       <p>Lorem ipsum dolor sit amet.</p>       <p><cite>Cicero</cite></p>     </blockquote>   </section> </div>

deck.js Getting Started Docs GitHub

1.1.0 A project of I Make Web Things

Page 5: deck.js Download or to learn more - GitHub Pages · deck.js M o d e r n H T M L P r e s e n t a t i o n s Download or → to learn more . deck.js Getting Sta rted Docs GitHub 1.1.0

How Does It Work?Slides are basic HTML.

The deck.core module keeps track of slide statesand deck states

<div class="deck­container on­slide­1">   <section class="slide deck­previous">     <h1>My Presentation</h1>   </section> 

  <section class="slide deck­current">     <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>   </section> 

  <section class="slide deck­next">     <h2>Another Slide</h2>     <blockquote cite="http://example.com">       <p>Lorem ipsum dolor sit amet.</p>       <p><cite>Cicero</cite></p>     </blockquote>   </section> </div>

deck.js Getting Started Docs GitHub

1.1.0 A project of I Make Web Things

Page 6: deck.js Download or to learn more - GitHub Pages · deck.js M o d e r n H T M L P r e s e n t a t i o n s Download or → to learn more . deck.js Getting Sta rted Docs GitHub 1.1.0

How Does It Work?Slides are basic HTML.

The deck.core module keeps track of slide statesand deck states, leaving CSS to define what eachstate look like…

<div class="deck­container on­slide­1">   <section class="slide deck­previous">     <h1>My Presentation</h1>   </section> 

  <section class="slide deck­current">     <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>   </section> 

  <section class="slide deck­next">     <h2>Another Slide</h2>     <blockquote cite="http://example.com">       <p>Lorem ipsum dolor sit amet.</p>       <p><cite>Cicero</cite></p>     </blockquote>   </section> </div>

deck.js Getting Started Docs GitHub

1.1.0 A project of I Make Web Things

Page 7: deck.js Download or to learn more - GitHub Pages · deck.js M o d e r n H T M L P r e s e n t a t i o n s Download or → to learn more . deck.js Getting Sta rted Docs GitHub 1.1.0

How Does It Work?Slides are basic HTML.

The deck.core module keeps track of slide statesand deck states, leaving CSS to define what eachstate look like…

…and how to transition between them.

<div class="deck­container on­slide­1">   <section class="slide deck­previous">     <h1>My Presentation</h1>   </section> 

  <section class="slide deck­current">     <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>   </section> 

  <section class="slide deck­next">     <h2>Another Slide</h2>     <blockquote cite="http://example.com">       <p>Lorem ipsum dolor sit amet.</p>       <p><cite>Cicero</cite></p>     </blockquote>   </section> </div>

deck.js Getting Started Docs GitHub

1.1.0 A project of I Make Web Things

Page 8: deck.js Download or to learn more - GitHub Pages · deck.js M o d e r n H T M L P r e s e n t a t i o n s Download or → to learn more . deck.js Getting Sta rted Docs GitHub 1.1.0

How Does It Work?Slides are basic HTML.

The deck.core module keeps track of slide statesand deck states, leaving CSS to define what eachstate look like…

…and how to transition between them.

Extensions use core events and methods to addgoodies

<div class="deck­container on­slide­1">   <section class="slide deck­previous">     <h1>My Presentation</h1>   </section> 

  <section class="slide deck­current">     <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>   </section> 

  <section class="slide deck­next">     <h2>Another Slide</h2>     <blockquote cite="http://example.com">       <p>Lorem ipsum dolor sit amet.</p>       <p><cite>Cicero</cite></p>     </blockquote>   </section> </div>

deck.js Getting Started Docs GitHub

8 / 15 deck.status 1.1.0 A project of I Make Web Things

Page 9: deck.js Download or to learn more - GitHub Pages · deck.js M o d e r n H T M L P r e s e n t a t i o n s Download or → to learn more . deck.js Getting Sta rted Docs GitHub 1.1.0

How Does It Work?Slides are basic HTML.

The deck.core module keeps track of slide statesand deck states, leaving CSS to define what eachstate look like…

…and how to transition between them.

Extensions use core events and methods to addgoodies, giving presenters the freedom to addwhat they want

<div class="deck­container on­slide­1">   <section class="slide deck­previous">     <h1>My Presentation</h1>   </section> 

  <section class="slide deck­current">     <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>   </section> 

  <section class="slide deck­next">     <h2>Another Slide</h2>     <blockquote cite="http://example.com">       <p>Lorem ipsum dolor sit amet.</p>       <p><cite>Cicero</cite></p>     </blockquote>   </section> </div>

Go to slide: Go

deck.goto

deck.navigation

deck.navigation

deck.js Getting Started Docs GitHub

9 / 15 deck.status 1.1.0 A project of I Make Web Things

Page 10: deck.js Download or to learn more - GitHub Pages · deck.js M o d e r n H T M L P r e s e n t a t i o n s Download or → to learn more . deck.js Getting Sta rted Docs GitHub 1.1.0

How Does It Work?Slides are basic HTML.

The deck.core module keeps track of slide statesand deck states, leaving CSS to define what eachstate look like…

…and how to transition between them.

Extensions use core events and methods to addgoodies, giving presenters the freedom to addwhat they want and leave out what they don’t.

<div class="deck­container on­slide­1">   <section class="slide deck­previous">     <h1>My Presentation</h1>   </section> 

  <section class="slide deck­current">     <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>   </section> 

  <section class="slide deck­next">     <h2>Another Slide</h2>     <blockquote cite="http://example.com">       <p>Lorem ipsum dolor sit amet.</p>       <p><cite>Cicero</cite></p>     </blockquote>   </section> </div>

deck.js Getting Started Docs GitHub

1.1.0 A project of I Make Web Things

Page 12: deck.js Download or to learn more - GitHub Pages · deck.js M o d e r n H T M L P r e s e n t a t i o n s Download or → to learn more . deck.js Getting Sta rted Docs GitHub 1.1.0

Only Know HTML?Use included premade themes andtemplates to start making yourdeck immediately.

Get Started

Great. Now What?

deck.js Getting Started Docs GitHub

1.1.0 A project of I Make Web Things

Page 13: deck.js Download or to learn more - GitHub Pages · deck.js M o d e r n H T M L P r e s e n t a t i o n s Download or → to learn more . deck.js Getting Sta rted Docs GitHub 1.1.0

CSS+JS Badass?Make custom decks with the APIexposed by the coreand extensions.

View Docs

Only Know HTML?Use included premade themes andtemplates to start making yourdeck immediately.

Get Started

Great. Now What?

deck.js Getting Started Docs GitHub

1.1.0 A project of I Make Web Things

Page 14: deck.js Download or to learn more - GitHub Pages · deck.js M o d e r n H T M L P r e s e n t a t i o n s Download or → to learn more . deck.js Getting Sta rted Docs GitHub 1.1.0

Something In-between?Take a little from both worlds.Tweak a theme, hack an extension,or write some of your own.

Only Know HTML?Use included premade themes andtemplates to start making yourdeck immediately.

Get Started

CSS+JS Badass?Make custom decks with the APIexposed by the coreand extensions.

View Docs

Great. Now What?

deck.js Getting Started Docs GitHub

1.1.0 A project of I Make Web Things

Page 15: deck.js Download or to learn more - GitHub Pages · deck.js M o d e r n H T M L P r e s e n t a t i o n s Download or → to learn more . deck.js Getting Sta rted Docs GitHub 1.1.0

Only Know HTML?Use included premade themes andtemplates to start making yourdeck immediately.

Get Started

CSS+JS Badass?Make custom decks with the APIexposed by the coreand extensions.

View Docs

Something In-between?Take a little from both worlds.Tweak a theme, hack an extension,or write some of your own.

Download

Great. Now What?

deck.js Getting Started Docs GitHub

1.1.0 A project of I Make Web Things