-
-
Notifications
You must be signed in to change notification settings - Fork 8
Modules
Ondřej Žára edited this page Oct 6, 2013
·
21 revisions
To register new module, add Slides.modules.YOURMODULE = YOURCONFIG;
to your HTML document. To deactivate a default module, add delete Slides.module.MODULENAME;
.
- Implements keyboard-based navigation (arrows, PageUp/Down, Space, Backspace, Home/End)
- Default configuration:
Slides.modules.keyboard = true;
- Persists current slide number to the URL; implements browser history and permalinks
- Default configuration:
Slides.modules.url = true;
- Creates and updates browser window title
- Default configuration:
Slides.modules.title = "(%n) %t";
- Available template replacements:
-
%t
= Presentation title -
%s
= Current slide's title -
%n
= Current slide's number -
%c
= Total slide count
-
- Maintains an element (
div#progress
) with progress information and adjust its width (100% at the last slide) - Progress node will be appended to a parent node specified by a CSS selector
- Default configuration:
Slides.modules.progress = {
template: "%n/%c",
parent: "footer"
};
- Maintains an empty element (
div#time
) and adjust its width based on an expected presentation duration - Time node will be appended to a parent node specified by a CSS selector
- Default configuration:
Slides.modules.time = {
remaining: 10*60*1000,
parent: "footer"
};
- Applies a stylesheet, located at
slides/skin/SKINNAME/skin.css
- Default configuration:
Slides.modules.skin = "default";
- Toggles content with respect to a currently selected language (use the "L" key)
- Shows/hides elements with
lang=xx
attribute - The first language specified in module configuration is the default one
- Default configuration:
Slides.modules.language = ["en"];
- Uses animated transition effect when switching slides
- Default configuration:
Slides.modules.transition = "horizontal";
- Available transitions:
none vertical horizontal blend corner
- Adds support for an overview mode (use the "O" key)
- Default configuration:
Slides.modules.overview = true;
- Adds support for a help popup (use the "?" key)
- Default configuration:
Slides.modules.help = true;
- Adds support for switching font size (hit "B"igger, "S"maller, "N"ormal)
- Default configuration:
Slides.modules.fontsize = {
sizes: ["100%" ,"120%", "150%", "200%", "250%", "350%"],
normal: "150%"
};
- Implements syntax highlighting
- Put code in
code[data-syntax=xx]
HTML - Supported languages: js, xml (use for HTML), css, shell
- Default configuration:
Slides.modules.syntax = true;
- Offers a Presenter's window on a second monitor
- Displays metadata (current slide index, remaining time, comments (if available), next slide title)
- Default configuration:
Slides.modules.window = true;
- Implements support for touch-based control
- Tap left/right part of screen; swipe horizontally/vertically; pinch to adjust font size
- Default configuration:
Slides.modules.touch = {
tap: true,
swipe: true,
pinch: true
};
- Automatically switches to next slide after a given time limit expires
- Useful for "Ignite" talks
- Time limit is specified in milliseconds
- Default configuration:
Slides.modules.auto = {
limit: 0
};
- Acts as a Firebase client
- Used to synchronize navigation across multiple browsers; tested in Firefox and Chrome (both desktop and mobile)
- Please read the Synchronization document to learn about how this works
- Default configuration:
/* this module is disabled by default */
- Hides all slides; shows control buttons
- To be used on a cell phone as a remote control app; has little sense without the Firebase module
- Append
?remote
to URL to enable this module - Default configuration:
Slides.modules.remote = true;