deck.js Modern HTML Presentations Download or to learn more. - - PowerPoint PPT Presentation

deck js
SMART_READER_LITE
LIVE PREVIEW

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


slide-1
SLIDE 1

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

slide-2
SLIDE 2

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

slide-3
SLIDE 3

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

slide-4
SLIDE 4

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

slide-5
SLIDE 5

How Does It Work?

Slides are basic HTML. The deck.core module keeps track of slide states and 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

slide-6
SLIDE 6

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="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

slide-7
SLIDE 7

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="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

slide-8
SLIDE 8

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="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

slide-9
SLIDE 9

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="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

slide-10
SLIDE 10

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="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

slide-11
SLIDE 11
  • Great. Now What?

deck.js

Getting Started Docs GitHub

1.1.0 A project of I Make Web Things

slide-12
SLIDE 12

Only Know HTML?

Use included premade themes and templates to start making your deck immediately. Get Started

  • Great. Now What?

deck.js

Getting Started Docs GitHub

1.1.0 A project of I Make Web Things

slide-13
SLIDE 13

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

  • Great. Now What?

deck.js

Getting Started Docs GitHub

1.1.0 A project of I Make Web Things

slide-14
SLIDE 14

Something In-between?

Take a little from both worlds. Tweak a theme, hack an extension,

  • r write some of your own.

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

  • Great. Now What?

deck.js

Getting Started Docs GitHub

1.1.0 A project of I Make Web Things

slide-15
SLIDE 15

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,

  • r 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