This plugin adds an overview mode to your Bespoke.js presentation.
You activate overview mode by pressing the o
key.
In this mode, all slides become visible and are arranged on a grid.
In addition to providing a “big picture” view of your presentation, you can also use this mode as a navigation aid to quickly jump to an arbitrary slide.
This plugin is shipped in a UMD format, meaning it is available as a CommonJS/AMD module or as a browser global.
For example, when using CommonJS modules:
var bespoke = require('bespoke'),
classes = require('bespoke-classes'),
keys = require('bespoke-keys'),
overview = require('bespoke-overview');
bespoke.from('.deck', [
classes(),
keys(),
overview()
]);
When using browser globals:
bespoke.from('.deck', [
bespoke.plugins.classes(),
bespoke.plugins.keys(),
bespoke.plugins.overview()
]);
For more information about options, styling and how the plugin works, see the complete README on GitHub.