deck.js
Modern HTML Presentations
Download
- r → to learn more.
deck.js
Getting Started Docs GitHub
1.1.0 A project of I Make Web Things
deck.js Modern HTML Presentations Download or to learn more. - - PowerPoint PPT Presentation
deck.js Getting Started Docs GitHub deck.js Modern HTML Presentations Download or to learn more. 1.1.0 A project of I Make Web Things deck.js Getting Started Docs GitHub How Does It Work? <div
Modern HTML Presentations
Download
deck.js
Getting Started Docs GitHub
1.1.0 A project of I Make Web Things
How Does It Work?
<div class="deckcontainer"> <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
How Does It Work?
Slides are basic HTML.
<div class="deckcontainer"> <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
How Does It Work?
Slides are basic HTML. The deck.core module keeps track of slide states
<div class="deckcontainer"> <section class="slide deckprevious"> <h1>My Presentation</h1> </section> <section class="slide deckcurrent"> <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 decknext"> <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
How Does It Work?
Slides are basic HTML. The deck.core module keeps track of slide states and deck states
<div class="deckcontainer onslide1"> <section class="slide deckprevious"> <h1>My Presentation</h1> </section> <section class="slide deckcurrent"> <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 decknext"> <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
How Does It Work?
Slides are basic HTML. The deck.core module keeps track of slide states and deck states, leaving CSS to define what each state look like…
<div class="deckcontainer onslide1"> <section class="slide deckprevious"> <h1>My Presentation</h1> </section> <section class="slide deckcurrent"> <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 decknext"> <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
How Does It Work?
Slides are basic HTML. The deck.core module keeps track of slide states and deck states, leaving CSS to define what each state look like… …and how to transition between them.
<div class="deckcontainer onslide1"> <section class="slide deckprevious"> <h1>My Presentation</h1> </section> <section class="slide deckcurrent"> <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 decknext"> <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
How Does It Work?
Slides are basic HTML. The deck.core module keeps track of slide states and deck states, leaving CSS to define what each state look like… …and how to transition between them. Extensions use core events and methods to add goodies
<div class="deckcontainer onslide1"> <section class="slide deckprevious"> <h1>My Presentation</h1> </section> <section class="slide deckcurrent"> <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 decknext"> <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
How Does It Work?
Slides are basic HTML. The deck.core module keeps track of slide states and deck states, leaving CSS to define what each state look like… …and how to transition between them. Extensions use core events and methods to add goodies, giving presenters the freedom to add what they want
<div class="deckcontainer onslide1"> <section class="slide deckprevious"> <h1>My Presentation</h1> </section> <section class="slide deckcurrent"> <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 decknext"> <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:
Godeck.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
How Does It Work?
Slides are basic HTML. The deck.core module keeps track of slide states and deck states, leaving CSS to define what each state look like… …and how to transition between them. Extensions use core events and methods to add goodies, giving presenters the freedom to add what they want and leave out what they don’t.
<div class="deckcontainer onslide1"> <section class="slide deckprevious"> <h1>My Presentation</h1> </section> <section class="slide deckcurrent"> <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 decknext"> <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
deck.js
Getting Started Docs GitHub
1.1.0 A project of I Make Web Things
Only Know HTML?
Use included premade themes and templates to start making your deck immediately. Get Started
deck.js
Getting Started Docs GitHub
1.1.0 A project of I Make Web Things
CSS+JS Badass?
Make custom decks with the API exposed by the core and extensions. View Docs
Only Know HTML?
Use included premade themes and templates to start making your deck immediately. Get Started
deck.js
Getting Started Docs GitHub
1.1.0 A project of I Make Web Things
Something In-between?
Take a little from both worlds. Tweak a theme, hack an extension,
Only Know HTML?
Use included premade themes and templates to start making your deck immediately. Get Started
CSS+JS Badass?
Make custom decks with the API exposed by the core and extensions. View Docs
deck.js
Getting Started Docs GitHub
1.1.0 A project of I Make Web Things
Only Know HTML?
Use included premade themes and templates to start making your deck immediately. Get Started
CSS+JS Badass?
Make custom decks with the API exposed by the core and extensions. View Docs
Something In-between?
Take a little from both worlds. Tweak a theme, hack an extension,
Download
deck.js
Getting Started Docs GitHub
1.1.0 A project of I Make Web Things