2012-04-26 05:24:29 +02:00
|
|
|
/*!
|
2012-11-11 16:01:05 +01:00
|
|
|
* reveal.js
|
2012-04-26 05:24:29 +02:00
|
|
|
* http://lab.hakim.se/reveal-js
|
|
|
|
* MIT licensed
|
2012-10-21 03:05:14 +02:00
|
|
|
*
|
2013-02-06 02:08:59 +01:00
|
|
|
* Copyright (C) 2013 Hakim El Hattab, http://hakim.se
|
2011-06-07 21:10:59 +02:00
|
|
|
*/
|
2011-12-05 03:07:33 +01:00
|
|
|
var Reveal = (function(){
|
2012-09-17 03:47:07 +02:00
|
|
|
|
|
|
|
'use strict';
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-11-10 19:59:51 +01:00
|
|
|
var SLIDES_SELECTOR = '.reveal .slides section',
|
|
|
|
HORIZONTAL_SLIDES_SELECTOR = '.reveal .slides>section',
|
2012-06-03 00:33:08 +02:00
|
|
|
VERTICAL_SLIDES_SELECTOR = '.reveal .slides>section.present>section',
|
2013-01-12 18:17:50 +01:00
|
|
|
HOME_SLIDE_SELECTOR = '.reveal .slides>section:first-child',
|
2011-12-05 03:55:48 +01:00
|
|
|
|
2012-10-21 03:05:14 +02:00
|
|
|
// Configurations defaults, can be overridden at initialization time
|
2011-12-31 07:33:19 +01:00
|
|
|
config = {
|
2013-01-28 05:27:14 +01:00
|
|
|
|
2013-01-29 00:58:32 +01:00
|
|
|
// The "normal" size of the presentation, aspect ratio will be preserved
|
|
|
|
// when the presentation is scaled to fit different resolutions
|
2013-01-31 05:59:37 +01:00
|
|
|
width: 960,
|
|
|
|
height: 700,
|
2013-01-29 00:58:32 +01:00
|
|
|
|
2013-01-31 05:59:37 +01:00
|
|
|
// Factor of the display size that should remain empty around the content
|
2013-01-30 00:59:36 +01:00
|
|
|
margin: 0.1,
|
2013-01-28 05:27:14 +01:00
|
|
|
|
2013-01-31 05:59:37 +01:00
|
|
|
// Bounds for smallest/largest possible scale to apply to content
|
|
|
|
minScale: 0.2,
|
2013-01-31 06:09:28 +01:00
|
|
|
maxScale: 1.0,
|
2013-01-31 05:59:37 +01:00
|
|
|
|
2012-07-16 01:21:47 +02:00
|
|
|
// Display controls in the bottom right corner
|
2012-06-18 21:16:05 +02:00
|
|
|
controls: true,
|
2012-07-16 01:21:47 +02:00
|
|
|
|
|
|
|
// Display a presentation progress bar
|
|
|
|
progress: true,
|
|
|
|
|
|
|
|
// Push each slide change to the browser history
|
2011-12-31 07:33:19 +01:00
|
|
|
history: false,
|
2012-07-16 01:21:47 +02:00
|
|
|
|
2012-07-21 04:20:07 +02:00
|
|
|
// Enable keyboard shortcuts for navigation
|
|
|
|
keyboard: true,
|
|
|
|
|
2012-09-21 14:58:21 +02:00
|
|
|
// Enable the slide overview mode
|
|
|
|
overview: true,
|
|
|
|
|
2013-03-01 17:13:46 +01:00
|
|
|
// Vertical centring of slides
|
2012-11-10 21:43:22 +01:00
|
|
|
center: true,
|
2012-11-10 15:41:26 +01:00
|
|
|
|
2013-01-21 18:29:44 +01:00
|
|
|
// Enables touch navigation on devices with touch input
|
|
|
|
touch: true,
|
|
|
|
|
2012-07-16 01:21:47 +02:00
|
|
|
// Loop the presentation
|
2012-04-28 18:16:56 +02:00
|
|
|
loop: false,
|
2012-07-16 01:21:47 +02:00
|
|
|
|
2012-11-27 14:45:02 +01:00
|
|
|
// Change the presentation direction to be RTL
|
2012-11-17 21:59:28 +01:00
|
|
|
rtl: false,
|
|
|
|
|
2012-10-21 03:05:14 +02:00
|
|
|
// Number of milliseconds between automatically proceeding to the
|
2012-10-11 19:13:18 +02:00
|
|
|
// next slide, disabled when set to 0, this value can be overwritten
|
2012-10-13 18:13:26 +02:00
|
|
|
// by using a data-autoslide attribute on your slides
|
2012-07-16 01:21:47 +02:00
|
|
|
autoSlide: 0,
|
|
|
|
|
|
|
|
// Enable slide navigation via mouse wheel
|
2012-11-17 21:48:12 +01:00
|
|
|
mouseWheel: false,
|
2012-07-16 01:21:47 +02:00
|
|
|
|
|
|
|
// Apply a 3D roll to links on hover
|
2012-04-28 18:16:56 +02:00
|
|
|
rollingLinks: true,
|
2012-07-16 01:21:47 +02:00
|
|
|
|
2013-01-16 21:49:10 +01:00
|
|
|
// Theme (see /css/theme)
|
2012-10-21 03:05:14 +02:00
|
|
|
theme: null,
|
2012-08-30 06:59:51 +02:00
|
|
|
|
2012-07-16 01:21:47 +02:00
|
|
|
// Transition style
|
2013-01-16 21:49:10 +01:00
|
|
|
transition: 'default', // default/cube/page/concave/zoom/linear/fade/none
|
2012-08-12 02:25:55 +02:00
|
|
|
|
|
|
|
// Script dependencies to load
|
|
|
|
dependencies: []
|
2011-12-31 07:33:19 +01:00
|
|
|
},
|
2011-12-22 05:22:49 +01:00
|
|
|
|
2013-03-04 21:59:44 +01:00
|
|
|
// The current auto-slide duration
|
|
|
|
autoSlide = 0,
|
2012-10-11 19:13:18 +02:00
|
|
|
|
2013-03-01 17:13:46 +01:00
|
|
|
// The horizontal and vertical index of the currently active slide
|
2012-07-27 04:54:36 +02:00
|
|
|
indexh = 0,
|
|
|
|
indexv = 0,
|
|
|
|
|
|
|
|
// The previous and current slide HTML elements
|
|
|
|
previousSlide,
|
|
|
|
currentSlide,
|
|
|
|
|
2012-10-21 03:05:14 +02:00
|
|
|
// Slides may hold a data-state attribute which we pick up and apply
|
|
|
|
// as a class to the body. This list contains the combined state of
|
2012-03-30 06:13:45 +02:00
|
|
|
// all current slides.
|
|
|
|
state = [],
|
|
|
|
|
2013-02-03 02:05:09 +01:00
|
|
|
// The current scale of the presentation (see width/height config)
|
|
|
|
scale = 1,
|
|
|
|
|
2011-12-22 05:22:49 +01:00
|
|
|
// Cached references to DOM elements
|
2011-12-23 09:36:37 +01:00
|
|
|
dom = {},
|
|
|
|
|
|
|
|
// Detect support for CSS 3D transforms
|
2012-08-04 04:41:31 +02:00
|
|
|
supports3DTransforms = 'WebkitPerspective' in document.body.style ||
|
2012-09-17 03:47:07 +02:00
|
|
|
'MozPerspective' in document.body.style ||
|
|
|
|
'msPerspective' in document.body.style ||
|
|
|
|
'OPerspective' in document.body.style ||
|
|
|
|
'perspective' in document.body.style,
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2013-01-21 18:22:30 +01:00
|
|
|
// Detect support for CSS 2D transforms
|
2012-09-17 03:47:07 +02:00
|
|
|
supports2DTransforms = 'WebkitTransform' in document.body.style ||
|
|
|
|
'MozTransform' in document.body.style ||
|
|
|
|
'msTransform' in document.body.style ||
|
|
|
|
'OTransform' in document.body.style ||
|
|
|
|
'transform' in document.body.style,
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-01-15 04:22:27 +01:00
|
|
|
// Throttles mouse wheel navigation
|
2012-03-24 17:36:34 +01:00
|
|
|
mouseWheelTimeout = 0,
|
|
|
|
|
2012-07-16 01:21:47 +02:00
|
|
|
// An interval used to automatically move on to the next slide
|
|
|
|
autoSlideTimeout = 0,
|
|
|
|
|
2012-03-24 17:36:34 +01:00
|
|
|
// Delays updates to the URL due to a Chrome thumbnailer bug
|
2012-06-02 23:45:06 +02:00
|
|
|
writeURLTimeout = 0,
|
|
|
|
|
2013-01-18 21:31:41 +01:00
|
|
|
// A delay used to activate the overview mode
|
2012-11-25 15:45:16 +01:00
|
|
|
activateOverviewTimeout = 0,
|
|
|
|
|
2013-01-18 21:31:41 +01:00
|
|
|
// A delay used to deactivate the overview mode
|
2013-01-16 21:49:10 +01:00
|
|
|
deactivateOverviewTimeout = 0,
|
|
|
|
|
2013-02-24 06:52:54 +01:00
|
|
|
// Flags if the interaction event listeners are bound
|
|
|
|
eventsAreBound = false,
|
|
|
|
|
2012-06-02 23:45:06 +02:00
|
|
|
// Holds information about the currently ongoing touch input
|
|
|
|
touch = {
|
|
|
|
startX: 0,
|
|
|
|
startY: 0,
|
|
|
|
startSpan: 0,
|
|
|
|
startCount: 0,
|
|
|
|
handled: false,
|
2012-10-15 01:58:24 +02:00
|
|
|
threshold: 80
|
2012-06-02 23:45:06 +02:00
|
|
|
};
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2011-06-07 21:10:59 +02:00
|
|
|
/**
|
2012-08-12 02:25:55 +02:00
|
|
|
* Starts up the presentation if the client is capable.
|
2011-06-07 21:10:59 +02:00
|
|
|
*/
|
2011-12-05 03:07:33 +01:00
|
|
|
function initialize( options ) {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2013-02-02 23:05:05 +01:00
|
|
|
if( !supports2DTransforms && !supports3DTransforms ) {
|
2012-01-03 09:11:05 +01:00
|
|
|
document.body.setAttribute( 'class', 'no-transforms' );
|
|
|
|
|
2012-10-21 03:05:14 +02:00
|
|
|
// If the browser doesn't support core features we won't be
|
2012-01-04 07:25:15 +01:00
|
|
|
// using JavaScript to control the presentation
|
2012-01-03 09:11:05 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-11-22 22:25:19 +01:00
|
|
|
// Force a layout when the whole page, incl fonts, has loaded
|
|
|
|
window.addEventListener( 'load', layout, false );
|
|
|
|
|
2012-08-12 02:25:55 +02:00
|
|
|
// Copy options over to our config object
|
|
|
|
extend( config, options );
|
|
|
|
|
2012-10-08 06:08:50 +02:00
|
|
|
// Hide the address bar in mobile browsers
|
|
|
|
hideAddressBar();
|
|
|
|
|
|
|
|
// Loads the dependencies and continues to #start() once done
|
|
|
|
load();
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-10-08 06:08:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-10-21 03:05:14 +02:00
|
|
|
* Finds and stores references to DOM elements which are
|
|
|
|
* required by the presentation. If a required element is
|
2012-10-08 06:08:50 +02:00
|
|
|
* not found, it is created.
|
|
|
|
*/
|
|
|
|
function setupDOM() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-08 06:08:50 +02:00
|
|
|
// Cache references to key DOM elements
|
2012-08-30 06:59:51 +02:00
|
|
|
dom.theme = document.querySelector( '#theme' );
|
2012-06-03 00:33:08 +02:00
|
|
|
dom.wrapper = document.querySelector( '.reveal' );
|
2012-11-17 21:59:28 +01:00
|
|
|
dom.slides = document.querySelector( '.reveal .slides' );
|
2012-10-08 06:08:50 +02:00
|
|
|
|
|
|
|
// Progress bar
|
2013-03-31 04:54:57 +02:00
|
|
|
if( !dom.wrapper.querySelector( '.progress' ) ) {
|
2012-10-08 06:08:50 +02:00
|
|
|
var progressElement = document.createElement( 'div' );
|
|
|
|
progressElement.classList.add( 'progress' );
|
|
|
|
progressElement.innerHTML = '<span></span>';
|
|
|
|
dom.wrapper.appendChild( progressElement );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Arrow controls
|
2013-03-31 04:54:57 +02:00
|
|
|
if( !dom.wrapper.querySelector( '.controls' ) ) {
|
2012-10-08 06:08:50 +02:00
|
|
|
var controlsElement = document.createElement( 'aside' );
|
|
|
|
controlsElement.classList.add( 'controls' );
|
2012-11-10 17:40:19 +01:00
|
|
|
controlsElement.innerHTML = '<div class="navigate-left"></div>' +
|
|
|
|
'<div class="navigate-right"></div>' +
|
|
|
|
'<div class="navigate-up"></div>' +
|
|
|
|
'<div class="navigate-down"></div>';
|
2012-10-08 06:08:50 +02:00
|
|
|
dom.wrapper.appendChild( controlsElement );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Presentation background element
|
|
|
|
if( !dom.wrapper.querySelector( '.state-background' ) ) {
|
|
|
|
var backgroundElement = document.createElement( 'div' );
|
|
|
|
backgroundElement.classList.add( 'state-background' );
|
|
|
|
dom.wrapper.appendChild( backgroundElement );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Overlay graphic which is displayed during the paused mode
|
|
|
|
if( !dom.wrapper.querySelector( '.pause-overlay' ) ) {
|
|
|
|
var pausedElement = document.createElement( 'div' );
|
|
|
|
pausedElement.classList.add( 'pause-overlay' );
|
|
|
|
dom.wrapper.appendChild( pausedElement );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cache references to elements
|
2012-06-03 00:33:08 +02:00
|
|
|
dom.progress = document.querySelector( '.reveal .progress' );
|
|
|
|
dom.progressbar = document.querySelector( '.reveal .progress span' );
|
2012-08-12 02:25:55 +02:00
|
|
|
|
2012-06-10 11:53:44 +02:00
|
|
|
if ( config.controls ) {
|
2012-06-10 11:42:42 +02:00
|
|
|
dom.controls = document.querySelector( '.reveal .controls' );
|
2012-11-10 17:40:19 +01:00
|
|
|
|
|
|
|
// There can be multiple instances of controls throughout the page
|
|
|
|
dom.controlsLeft = toArray( document.querySelectorAll( '.navigate-left' ) );
|
|
|
|
dom.controlsRight = toArray( document.querySelectorAll( '.navigate-right' ) );
|
|
|
|
dom.controlsUp = toArray( document.querySelectorAll( '.navigate-up' ) );
|
|
|
|
dom.controlsDown = toArray( document.querySelectorAll( '.navigate-down' ) );
|
|
|
|
dom.controlsPrev = toArray( document.querySelectorAll( '.navigate-prev' ) );
|
|
|
|
dom.controlsNext = toArray( document.querySelectorAll( '.navigate-next' ) );
|
2012-06-10 11:42:42 +02:00
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-08 06:08:50 +02:00
|
|
|
}
|
2012-06-02 23:58:09 +02:00
|
|
|
|
2012-10-08 06:08:50 +02:00
|
|
|
/**
|
|
|
|
* Hides the address bar if we're on a mobile device.
|
|
|
|
*/
|
|
|
|
function hideAddressBar() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2013-02-03 17:28:01 +01:00
|
|
|
if( /iphone|ipod|android/gi.test( navigator.userAgent ) && !/crios/gi.test( navigator.userAgent ) ) {
|
2012-06-02 23:58:09 +02:00
|
|
|
// Events that should trigger the address bar to hide
|
|
|
|
window.addEventListener( 'load', removeAddressBar, false );
|
|
|
|
window.addEventListener( 'orientationchange', removeAddressBar, false );
|
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-06-02 23:58:09 +02:00
|
|
|
}
|
|
|
|
|
2012-08-12 02:25:55 +02:00
|
|
|
/**
|
2012-10-21 03:05:14 +02:00
|
|
|
* Loads the dependencies of reveal.js. Dependencies are
|
|
|
|
* defined via the configuration option 'dependencies'
|
|
|
|
* and will be loaded prior to starting/binding reveal.js.
|
|
|
|
* Some dependencies may have an 'async' flag, if so they
|
2012-08-12 02:25:55 +02:00
|
|
|
* will load after reveal.js has been started up.
|
|
|
|
*/
|
|
|
|
function load() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-08-12 02:25:55 +02:00
|
|
|
var scripts = [],
|
|
|
|
scriptsAsync = [];
|
|
|
|
|
|
|
|
for( var i = 0, len = config.dependencies.length; i < len; i++ ) {
|
|
|
|
var s = config.dependencies[i];
|
|
|
|
|
|
|
|
// Load if there's no condition or the condition is truthy
|
|
|
|
if( !s.condition || s.condition() ) {
|
|
|
|
if( s.async ) {
|
|
|
|
scriptsAsync.push( s.src );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
scripts.push( s.src );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Extension may contain callback functions
|
|
|
|
if( typeof s.callback === 'function' ) {
|
2012-11-12 16:47:40 +01:00
|
|
|
head.ready( s.src.match( /([\w\d_\-]*)\.?js$|[^\\\/]*$/i )[0], s.callback );
|
2012-08-12 02:25:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-01 17:13:46 +01:00
|
|
|
// Called once synchronous scripts finish loading
|
2012-08-12 02:25:55 +02:00
|
|
|
function proceed() {
|
2012-10-29 13:27:20 +01:00
|
|
|
if( scriptsAsync.length ) {
|
|
|
|
// Load asynchronous scripts
|
|
|
|
head.js.apply( null, scriptsAsync );
|
|
|
|
}
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-08-12 02:25:55 +02:00
|
|
|
start();
|
|
|
|
}
|
|
|
|
|
|
|
|
if( scripts.length ) {
|
|
|
|
head.ready( proceed );
|
|
|
|
|
|
|
|
// Load synchronous scripts
|
|
|
|
head.js.apply( null, scripts );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
proceed();
|
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-08-12 02:25:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-10-21 03:05:14 +02:00
|
|
|
* Starts up reveal.js by binding input events and navigating
|
2012-08-12 02:25:55 +02:00
|
|
|
* to the current URL deeplink if there is one.
|
|
|
|
*/
|
|
|
|
function start() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-18 05:01:41 +02:00
|
|
|
// Make sure we've got all the DOM elements we need
|
|
|
|
setupDOM();
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-08-12 02:25:55 +02:00
|
|
|
// Updates the presentation to match the current configuration values
|
|
|
|
configure();
|
|
|
|
|
|
|
|
// Read the initial hash
|
|
|
|
readURL();
|
|
|
|
|
2012-10-25 03:42:10 +02:00
|
|
|
// Notify listeners that the presentation is ready but use a 1ms
|
|
|
|
// timeout to ensure it's not fired synchronously after #initialize()
|
|
|
|
setTimeout( function() {
|
|
|
|
dispatchEvent( 'ready', {
|
|
|
|
'indexh': indexh,
|
|
|
|
'indexv': indexv,
|
|
|
|
'currentSlide': currentSlide
|
|
|
|
} );
|
|
|
|
}, 1 );
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-08-12 02:25:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Applies the configuration settings from the config object.
|
|
|
|
*/
|
2013-02-24 06:44:20 +01:00
|
|
|
function configure( options ) {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2013-02-24 06:44:20 +01:00
|
|
|
dom.wrapper.classList.remove( config.transition );
|
2011-12-23 09:36:37 +01:00
|
|
|
|
2013-02-24 06:44:20 +01:00
|
|
|
// New config options may be passed when this method
|
|
|
|
// is invoked through the API after initialization
|
|
|
|
if( typeof options === 'object' ) extend( config, options );
|
2011-12-05 03:07:33 +01:00
|
|
|
|
2013-02-24 06:44:20 +01:00
|
|
|
// Force linear transition based on browser capabilities
|
|
|
|
if( supports3DTransforms === false ) config.transition = 'linear';
|
2011-12-22 09:00:29 +01:00
|
|
|
|
2013-02-24 06:44:20 +01:00
|
|
|
dom.wrapper.classList.add( config.transition );
|
2011-12-26 09:00:38 +01:00
|
|
|
|
2013-02-28 23:03:44 +01:00
|
|
|
if( dom.controls ) {
|
2013-02-28 22:05:06 +01:00
|
|
|
dom.controls.style.display = ( config.controls && dom.controls ) ? 'block' : 'none';
|
2013-02-28 23:03:44 +01:00
|
|
|
}
|
2013-02-28 22:05:06 +01:00
|
|
|
|
2013-02-28 23:03:44 +01:00
|
|
|
if( dom.progress ) {
|
2013-02-28 22:05:06 +01:00
|
|
|
dom.progress.style.display = ( config.progress && dom.progress ) ? 'block' : 'none';
|
2013-02-28 23:03:44 +01:00
|
|
|
}
|
2012-11-17 21:59:28 +01:00
|
|
|
|
2013-02-27 22:55:14 +01:00
|
|
|
if( config.rtl ) {
|
|
|
|
dom.wrapper.classList.add( 'rtl' );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
dom.wrapper.classList.remove( 'rtl' );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( config.center ) {
|
|
|
|
dom.wrapper.classList.add( 'center' );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
dom.wrapper.classList.remove( 'center' );
|
|
|
|
}
|
2012-11-10 15:41:26 +01:00
|
|
|
|
2012-01-15 04:22:27 +01:00
|
|
|
if( config.mouseWheel ) {
|
2012-05-07 04:05:58 +02:00
|
|
|
document.addEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF
|
|
|
|
document.addEventListener( 'mousewheel', onDocumentMouseScroll, false );
|
2012-01-15 04:22:27 +01:00
|
|
|
}
|
2013-02-24 06:44:20 +01:00
|
|
|
else {
|
|
|
|
document.removeEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF
|
|
|
|
document.removeEventListener( 'mousewheel', onDocumentMouseScroll, false );
|
|
|
|
}
|
2012-01-15 04:22:27 +01:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
// 3D links
|
2011-12-05 03:07:33 +01:00
|
|
|
if( config.rollingLinks ) {
|
2013-02-24 06:44:20 +01:00
|
|
|
enable3DLinks();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
disable3DLinks();
|
2011-12-05 03:07:33 +01:00
|
|
|
}
|
2012-10-15 03:02:32 +02:00
|
|
|
|
|
|
|
// Load the theme in the config, if it's not already loaded
|
|
|
|
if( config.theme && dom.theme ) {
|
|
|
|
var themeURL = dom.theme.getAttribute( 'href' );
|
|
|
|
var themeFinder = /[^\/]*?(?=\.css)/;
|
|
|
|
var themeName = themeURL.match(themeFinder)[0];
|
|
|
|
|
|
|
|
if( config.theme !== themeName ) {
|
|
|
|
themeURL = themeURL.replace(themeFinder, config.theme);
|
|
|
|
dom.theme.setAttribute( 'href', themeURL );
|
|
|
|
}
|
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2013-03-17 13:21:17 +01:00
|
|
|
postConfigure();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates various parts of the presentatio after the
|
|
|
|
* configuration has changed.
|
|
|
|
*/
|
|
|
|
function postConfigure() {
|
|
|
|
|
|
|
|
// Subscribe to input
|
|
|
|
removeEventListeners();
|
|
|
|
addEventListeners();
|
|
|
|
|
2013-02-27 23:17:32 +01:00
|
|
|
// Force a layout to make sure the current config is accounted for
|
|
|
|
layout();
|
|
|
|
|
2013-03-04 21:59:44 +01:00
|
|
|
// Reflect the current autoSlide value
|
|
|
|
autoSlide = config.autoSlide;
|
|
|
|
|
|
|
|
// Start auto-sliding if it's enabled
|
|
|
|
cueAutoSlide();
|
|
|
|
|
2012-06-01 19:31:01 +02:00
|
|
|
}
|
2012-06-02 23:45:06 +02:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
/**
|
|
|
|
* Binds all event listeners.
|
|
|
|
*/
|
2012-06-02 23:45:06 +02:00
|
|
|
function addEventListeners() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2013-02-24 06:52:54 +01:00
|
|
|
eventsAreBound = true;
|
|
|
|
|
2012-06-01 19:31:01 +02:00
|
|
|
window.addEventListener( 'hashchange', onWindowHashChange, false );
|
2012-11-10 15:41:26 +01:00
|
|
|
window.addEventListener( 'resize', onWindowResize, false );
|
2012-06-10 11:42:42 +02:00
|
|
|
|
2013-01-21 18:29:44 +01:00
|
|
|
if( config.touch ) {
|
2013-03-04 23:30:28 +01:00
|
|
|
dom.wrapper.addEventListener( 'touchstart', onTouchStart, false );
|
|
|
|
dom.wrapper.addEventListener( 'touchmove', onTouchMove, false );
|
|
|
|
dom.wrapper.addEventListener( 'touchend', onTouchEnd, false );
|
2013-03-05 15:47:08 +01:00
|
|
|
|
|
|
|
// Support pointer-style touch interaction as well
|
|
|
|
if( window.navigator.msPointerEnabled ) {
|
|
|
|
dom.wrapper.addEventListener( 'MSPointerDown', onPointerDown, false );
|
|
|
|
dom.wrapper.addEventListener( 'MSPointerMove', onPointerMove, false );
|
|
|
|
dom.wrapper.addEventListener( 'MSPointerUp', onPointerUp, false );
|
|
|
|
}
|
2013-01-21 18:29:44 +01:00
|
|
|
}
|
|
|
|
|
2012-07-21 04:20:07 +02:00
|
|
|
if( config.keyboard ) {
|
|
|
|
document.addEventListener( 'keydown', onDocumentKeyDown, false );
|
|
|
|
}
|
|
|
|
|
2012-10-20 18:51:12 +02:00
|
|
|
if ( config.progress && dom.progress ) {
|
2013-02-03 08:00:17 +01:00
|
|
|
dom.progress.addEventListener( 'click', onProgressClicked, false );
|
2012-10-20 18:51:12 +02:00
|
|
|
}
|
|
|
|
|
2012-06-10 11:53:44 +02:00
|
|
|
if ( config.controls && dom.controls ) {
|
2013-03-04 23:30:28 +01:00
|
|
|
[ 'touchstart', 'click' ].forEach( function( eventName ) {
|
|
|
|
dom.controlsLeft.forEach( function( el ) { el.addEventListener( eventName, onNavigateLeftClicked, false ); } );
|
|
|
|
dom.controlsRight.forEach( function( el ) { el.addEventListener( eventName, onNavigateRightClicked, false ); } );
|
|
|
|
dom.controlsUp.forEach( function( el ) { el.addEventListener( eventName, onNavigateUpClicked, false ); } );
|
|
|
|
dom.controlsDown.forEach( function( el ) { el.addEventListener( eventName, onNavigateDownClicked, false ); } );
|
|
|
|
dom.controlsPrev.forEach( function( el ) { el.addEventListener( eventName, onNavigatePrevClicked, false ); } );
|
|
|
|
dom.controlsNext.forEach( function( el ) { el.addEventListener( eventName, onNavigateNextClicked, false ); } );
|
|
|
|
} );
|
2012-06-10 11:42:42 +02:00
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-06-01 19:31:01 +02:00
|
|
|
}
|
2012-06-02 23:45:06 +02:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
/**
|
|
|
|
* Unbinds all event listeners.
|
|
|
|
*/
|
2012-06-02 23:45:06 +02:00
|
|
|
function removeEventListeners() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2013-02-24 06:52:54 +01:00
|
|
|
eventsAreBound = false;
|
|
|
|
|
2012-06-01 19:31:01 +02:00
|
|
|
document.removeEventListener( 'keydown', onDocumentKeyDown, false );
|
|
|
|
window.removeEventListener( 'hashchange', onWindowHashChange, false );
|
2012-11-10 15:41:26 +01:00
|
|
|
window.removeEventListener( 'resize', onWindowResize, false );
|
2012-10-20 18:51:12 +02:00
|
|
|
|
2013-03-17 23:21:03 +01:00
|
|
|
dom.wrapper.removeEventListener( 'touchstart', onTouchStart, false );
|
|
|
|
dom.wrapper.removeEventListener( 'touchmove', onTouchMove, false );
|
|
|
|
dom.wrapper.removeEventListener( 'touchend', onTouchEnd, false );
|
|
|
|
|
|
|
|
if( window.navigator.msPointerEnabled ) {
|
|
|
|
dom.wrapper.removeEventListener( 'MSPointerDown', onPointerDown, false );
|
|
|
|
dom.wrapper.removeEventListener( 'MSPointerMove', onPointerMove, false );
|
|
|
|
dom.wrapper.removeEventListener( 'MSPointerUp', onPointerUp, false );
|
2013-01-21 18:29:44 +01:00
|
|
|
}
|
|
|
|
|
2012-10-20 18:51:12 +02:00
|
|
|
if ( config.progress && dom.progress ) {
|
2013-02-03 08:00:17 +01:00
|
|
|
dom.progress.removeEventListener( 'click', onProgressClicked, false );
|
2012-10-20 18:51:12 +02:00
|
|
|
}
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-06-10 11:53:44 +02:00
|
|
|
if ( config.controls && dom.controls ) {
|
2013-03-04 23:30:28 +01:00
|
|
|
[ 'touchstart', 'click' ].forEach( function( eventName ) {
|
|
|
|
dom.controlsLeft.forEach( function( el ) { el.removeEventListener( eventName, onNavigateLeftClicked, false ); } );
|
|
|
|
dom.controlsRight.forEach( function( el ) { el.removeEventListener( eventName, onNavigateRightClicked, false ); } );
|
|
|
|
dom.controlsUp.forEach( function( el ) { el.removeEventListener( eventName, onNavigateUpClicked, false ); } );
|
|
|
|
dom.controlsDown.forEach( function( el ) { el.removeEventListener( eventName, onNavigateDownClicked, false ); } );
|
|
|
|
dom.controlsPrev.forEach( function( el ) { el.removeEventListener( eventName, onNavigatePrevClicked, false ); } );
|
|
|
|
dom.controlsNext.forEach( function( el ) { el.removeEventListener( eventName, onNavigateNextClicked, false ); } );
|
|
|
|
} );
|
2012-06-10 11:42:42 +02:00
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-06-07 21:10:59 +02:00
|
|
|
}
|
2011-12-05 03:07:33 +01:00
|
|
|
|
2011-12-31 07:33:19 +01:00
|
|
|
/**
|
2012-10-21 03:05:14 +02:00
|
|
|
* Extend object a with the properties of object b.
|
2011-12-31 07:33:19 +01:00
|
|
|
* If there's a conflict, object b takes precedence.
|
|
|
|
*/
|
|
|
|
function extend( a, b ) {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-12-31 07:33:19 +01:00
|
|
|
for( var i in b ) {
|
|
|
|
a[ i ] = b[ i ];
|
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-12-31 07:33:19 +01:00
|
|
|
}
|
|
|
|
|
2012-11-10 17:40:19 +01:00
|
|
|
/**
|
|
|
|
* Converts the target object to an array.
|
|
|
|
*/
|
|
|
|
function toArray( o ) {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-11-10 17:40:19 +01:00
|
|
|
return Array.prototype.slice.call( o );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-06-02 23:58:09 +02:00
|
|
|
/**
|
|
|
|
* Measures the distance in pixels between point a
|
2012-10-21 03:05:14 +02:00
|
|
|
* and point b.
|
|
|
|
*
|
2012-06-02 23:58:09 +02:00
|
|
|
* @param {Object} a point with x/y properties
|
|
|
|
* @param {Object} b point with x/y properties
|
|
|
|
*/
|
2012-06-02 23:45:06 +02:00
|
|
|
function distanceBetween( a, b ) {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-06-02 23:45:06 +02:00
|
|
|
var dx = a.x - b.x,
|
|
|
|
dy = a.y - b.y;
|
|
|
|
|
|
|
|
return Math.sqrt( dx*dx + dy*dy );
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-06-02 23:45:06 +02:00
|
|
|
}
|
|
|
|
|
2012-05-07 04:05:58 +02:00
|
|
|
/**
|
2012-10-21 03:05:14 +02:00
|
|
|
* Causes the address bar to hide on mobile devices,
|
2012-05-07 04:05:58 +02:00
|
|
|
* more vertical space ftw.
|
|
|
|
*/
|
|
|
|
function removeAddressBar() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2013-01-30 00:59:36 +01:00
|
|
|
if( window.orientation === 0 ) {
|
|
|
|
document.documentElement.style.overflow = 'scroll';
|
|
|
|
document.body.style.height = '120%';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
document.documentElement.style.overflow = '';
|
|
|
|
document.body.style.height = '100%';
|
|
|
|
}
|
|
|
|
|
2012-05-07 04:05:58 +02:00
|
|
|
setTimeout( function() {
|
|
|
|
window.scrollTo( 0, 1 );
|
2013-01-30 00:59:36 +01:00
|
|
|
}, 10 );
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-05-07 04:05:58 +02:00
|
|
|
}
|
2012-10-04 14:56:43 +02:00
|
|
|
|
|
|
|
/**
|
2012-10-21 03:05:14 +02:00
|
|
|
* Dispatches an event of the specified type from the
|
2012-10-04 14:56:43 +02:00
|
|
|
* reveal DOM element.
|
|
|
|
*/
|
|
|
|
function dispatchEvent( type, properties ) {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-04 14:56:43 +02:00
|
|
|
var event = document.createEvent( "HTMLEvents", 1, 2 );
|
|
|
|
event.initEvent( type, true, true );
|
|
|
|
extend( event, properties );
|
|
|
|
dom.wrapper.dispatchEvent( event );
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-04 14:56:43 +02:00
|
|
|
}
|
|
|
|
|
2011-12-05 03:07:33 +01:00
|
|
|
/**
|
|
|
|
* Wrap all links in 3D goodness.
|
|
|
|
*/
|
2013-02-24 06:44:20 +01:00
|
|
|
function enable3DLinks() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-08-04 04:41:31 +02:00
|
|
|
if( supports3DTransforms && !( 'msPerspective' in document.body.style ) ) {
|
2013-02-24 06:44:20 +01:00
|
|
|
var anchors = document.querySelectorAll( SLIDES_SELECTOR + ' a:not(.image)' );
|
2012-09-17 03:47:07 +02:00
|
|
|
|
2013-02-24 06:44:20 +01:00
|
|
|
for( var i = 0, len = anchors.length; i < len; i++ ) {
|
|
|
|
var anchor = anchors[i];
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2013-02-24 06:44:20 +01:00
|
|
|
if( anchor.textContent && !anchor.querySelector( '*' ) && ( !anchor.className || !anchor.classList.contains( anchor, 'roll' ) ) ) {
|
2013-01-21 20:55:45 +01:00
|
|
|
var span = document.createElement('span');
|
2013-02-24 06:44:20 +01:00
|
|
|
span.setAttribute('data-title', anchor.text);
|
|
|
|
span.innerHTML = anchor.innerHTML;
|
2013-01-06 06:11:32 +01:00
|
|
|
|
2013-02-24 06:44:20 +01:00
|
|
|
anchor.classList.add( 'roll' );
|
|
|
|
anchor.innerHTML = '';
|
|
|
|
anchor.appendChild(span);
|
2012-09-17 03:47:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-12-05 03:07:33 +01:00
|
|
|
}
|
2011-12-23 11:47:38 +01:00
|
|
|
|
2013-02-24 06:44:20 +01:00
|
|
|
/**
|
|
|
|
* Unwrap all 3D links.
|
|
|
|
*/
|
|
|
|
function disable3DLinks() {
|
|
|
|
|
|
|
|
var anchors = document.querySelectorAll( SLIDES_SELECTOR + ' a.roll' );
|
|
|
|
|
|
|
|
for( var i = 0, len = anchors.length; i < len; i++ ) {
|
|
|
|
var anchor = anchors[i];
|
|
|
|
var span = anchor.querySelector( 'span' );
|
|
|
|
|
|
|
|
if( span ) {
|
|
|
|
anchor.classList.remove( 'roll' );
|
|
|
|
anchor.innerHTML = span.innerHTML;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-02-27 19:40:42 +01:00
|
|
|
/**
|
|
|
|
* Return a sorted fragments list, ordered by an increasing
|
|
|
|
* "data-fragment-index" attribute.
|
|
|
|
*
|
|
|
|
* Fragments will be revealed in the order that they are returned by
|
2013-03-09 01:31:36 +01:00
|
|
|
* this function, so you can use the index attributes to control the
|
2013-02-27 19:40:42 +01:00
|
|
|
* order of fragment appearance.
|
|
|
|
*
|
|
|
|
* To maintain a sensible default fragment order, fragments are presumed
|
|
|
|
* to be passed in document order. This function adds a "fragment-index"
|
|
|
|
* attribute to each node if such an attribute is not already present,
|
|
|
|
* and sets that attribute to an integer value which is the position of
|
|
|
|
* the fragment within the fragments list.
|
|
|
|
*/
|
|
|
|
function sortFragments( fragments ) {
|
|
|
|
|
|
|
|
var a = toArray( fragments );
|
|
|
|
|
|
|
|
a.forEach( function( el, idx ) {
|
|
|
|
if( !el.hasAttribute( 'data-fragment-index' ) ) {
|
|
|
|
el.setAttribute( 'data-fragment-index', idx );
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
|
|
|
a.sort( function( l, r ) {
|
|
|
|
return l.getAttribute( 'data-fragment-index' ) - r.getAttribute( 'data-fragment-index');
|
|
|
|
} );
|
|
|
|
|
2013-03-09 01:29:15 +01:00
|
|
|
return a;
|
2013-02-27 19:40:42 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-11-10 15:41:26 +01:00
|
|
|
/**
|
|
|
|
* Applies JavaScript-controlled layout rules to the
|
|
|
|
* presentation.
|
|
|
|
*/
|
|
|
|
function layout() {
|
2012-11-10 16:02:19 +01:00
|
|
|
|
2013-02-11 18:09:14 +01:00
|
|
|
if( dom.wrapper ) {
|
2013-01-29 00:58:32 +01:00
|
|
|
|
2013-02-11 18:09:14 +01:00
|
|
|
// Available space to scale within
|
|
|
|
var availableWidth = dom.wrapper.offsetWidth,
|
|
|
|
availableHeight = dom.wrapper.offsetHeight;
|
2013-01-30 00:59:36 +01:00
|
|
|
|
2013-03-01 17:13:46 +01:00
|
|
|
// Reduce available space by margin
|
2013-02-11 18:09:14 +01:00
|
|
|
availableWidth -= ( availableHeight * config.margin );
|
|
|
|
availableHeight -= ( availableHeight * config.margin );
|
2013-01-29 00:58:32 +01:00
|
|
|
|
2013-02-11 18:09:14 +01:00
|
|
|
// Dimensions of the content
|
|
|
|
var slideWidth = config.width,
|
|
|
|
slideHeight = config.height;
|
2013-01-29 00:58:32 +01:00
|
|
|
|
2013-02-11 18:09:14 +01:00
|
|
|
// Slide width may be a percentage of available width
|
|
|
|
if( typeof slideWidth === 'string' && /%$/.test( slideWidth ) ) {
|
|
|
|
slideWidth = parseInt( slideWidth, 10 ) / 100 * availableWidth;
|
|
|
|
}
|
2013-01-28 05:27:14 +01:00
|
|
|
|
2013-02-11 18:09:14 +01:00
|
|
|
// Slide height may be a percentage of available height
|
|
|
|
if( typeof slideHeight === 'string' && /%$/.test( slideHeight ) ) {
|
|
|
|
slideHeight = parseInt( slideHeight, 10 ) / 100 * availableHeight;
|
|
|
|
}
|
2013-01-28 05:27:14 +01:00
|
|
|
|
2013-02-11 18:09:14 +01:00
|
|
|
dom.slides.style.width = slideWidth + 'px';
|
|
|
|
dom.slides.style.height = slideHeight + 'px';
|
2013-01-29 00:58:32 +01:00
|
|
|
|
2013-02-11 18:09:14 +01:00
|
|
|
// Determine scale of content to fit within available space
|
|
|
|
scale = Math.min( availableWidth / slideWidth, availableHeight / slideHeight );
|
2013-01-31 05:59:37 +01:00
|
|
|
|
2013-02-11 18:09:14 +01:00
|
|
|
// Respect max/min scale settings
|
|
|
|
scale = Math.max( scale, config.minScale );
|
|
|
|
scale = Math.min( scale, config.maxScale );
|
2013-01-29 00:58:32 +01:00
|
|
|
|
2013-02-11 18:09:14 +01:00
|
|
|
// Prefer applying scale via zoom since Chrome blurs scaled content
|
|
|
|
// with nested transforms
|
|
|
|
if( typeof dom.slides.style.zoom !== 'undefined' && !navigator.userAgent.match( /(iphone|ipod|ipad|android)/gi ) ) {
|
|
|
|
dom.slides.style.zoom = scale;
|
|
|
|
}
|
|
|
|
// Apply scale transform as a fallback
|
|
|
|
else {
|
|
|
|
var transform = 'translate(-50%, -50%) scale('+ scale +') translate(50%, 50%)';
|
|
|
|
|
|
|
|
dom.slides.style.WebkitTransform = transform;
|
|
|
|
dom.slides.style.MozTransform = transform;
|
|
|
|
dom.slides.style.msTransform = transform;
|
|
|
|
dom.slides.style.OTransform = transform;
|
|
|
|
dom.slides.style.transform = transform;
|
|
|
|
}
|
2013-01-28 05:27:14 +01:00
|
|
|
|
2013-02-24 06:44:20 +01:00
|
|
|
// Select all slides, vertical and horizontal
|
|
|
|
var slides = toArray( document.querySelectorAll( SLIDES_SELECTOR ) );
|
2012-11-10 15:41:26 +01:00
|
|
|
|
2013-02-24 06:44:20 +01:00
|
|
|
for( var i = 0, len = slides.length; i < len; i++ ) {
|
|
|
|
var slide = slides[ i ];
|
2012-11-10 15:41:26 +01:00
|
|
|
|
2013-02-24 06:44:20 +01:00
|
|
|
// Don't bother updating invisible slides
|
|
|
|
if( slide.style.display === 'none' ) {
|
|
|
|
continue;
|
|
|
|
}
|
2012-11-10 20:48:29 +01:00
|
|
|
|
2013-02-24 06:44:20 +01:00
|
|
|
if( config.center ) {
|
2013-03-01 17:13:46 +01:00
|
|
|
// Vertical stacks are not centred since their section
|
2013-02-11 18:09:14 +01:00
|
|
|
// children will be
|
|
|
|
if( slide.classList.contains( 'stack' ) ) {
|
|
|
|
slide.style.top = 0;
|
|
|
|
}
|
|
|
|
else {
|
2013-02-24 06:44:20 +01:00
|
|
|
slide.style.top = Math.max( - ( slide.offsetHeight / 2 ) - 20, -slideHeight / 2 ) + 'px';
|
2013-02-11 18:09:14 +01:00
|
|
|
}
|
2012-11-10 15:41:26 +01:00
|
|
|
}
|
2013-02-24 06:44:20 +01:00
|
|
|
else {
|
|
|
|
slide.style.top = '';
|
|
|
|
}
|
2013-02-11 18:09:14 +01:00
|
|
|
|
2012-11-10 15:41:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2012-11-10 16:02:19 +01:00
|
|
|
|
2012-11-10 15:41:26 +01:00
|
|
|
}
|
|
|
|
|
2012-11-10 21:28:34 +01:00
|
|
|
/**
|
2013-01-21 18:22:30 +01:00
|
|
|
* Stores the vertical index of a stack so that the same
|
|
|
|
* vertical slide can be selected when navigating to and
|
2012-11-10 21:28:34 +01:00
|
|
|
* from the stack.
|
2013-01-21 18:22:30 +01:00
|
|
|
*
|
2012-11-10 21:28:34 +01:00
|
|
|
* @param {HTMLElement} stack The vertical stack element
|
|
|
|
* @param {int} v Index to memorize
|
|
|
|
*/
|
|
|
|
function setPreviousVerticalIndex( stack, v ) {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2013-03-04 23:01:49 +01:00
|
|
|
if( typeof stack === 'object' && typeof stack.setAttribute === 'function' ) {
|
2012-11-10 21:28:34 +01:00
|
|
|
stack.setAttribute( 'data-previous-indexv', v || 0 );
|
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-11-10 21:28:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-01-31 23:44:15 +01:00
|
|
|
* Retrieves the vertical index which was stored using
|
2012-11-10 21:28:34 +01:00
|
|
|
* #setPreviousVerticalIndex() or 0 if no previous index
|
|
|
|
* exists.
|
|
|
|
*
|
|
|
|
* @param {HTMLElement} stack The vertical stack element
|
|
|
|
*/
|
|
|
|
function getPreviousVerticalIndex( stack ) {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2013-03-04 23:01:49 +01:00
|
|
|
if( typeof stack === 'object' && typeof stack.setAttribute === 'function' && stack.classList.contains( 'stack' ) ) {
|
2012-11-11 16:01:05 +01:00
|
|
|
return parseInt( stack.getAttribute( 'data-previous-indexv' ) || 0, 10 );
|
2012-11-10 21:28:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-11-10 21:28:34 +01:00
|
|
|
}
|
|
|
|
|
2011-12-23 11:47:38 +01:00
|
|
|
/**
|
2012-10-21 03:05:14 +02:00
|
|
|
* Displays the overview of slides (quick nav) by
|
2011-12-23 11:47:38 +01:00
|
|
|
* scaling down and arranging all slide elements.
|
2012-10-21 03:05:14 +02:00
|
|
|
*
|
|
|
|
* Experimental feature, might be dropped if perf
|
2011-12-23 11:47:38 +01:00
|
|
|
* can't be improved.
|
|
|
|
*/
|
|
|
|
function activateOverview() {
|
2012-09-21 14:58:21 +02:00
|
|
|
|
2012-09-21 15:27:31 +02:00
|
|
|
// Only proceed if enabled in config
|
2012-09-21 14:58:21 +02:00
|
|
|
if( config.overview ) {
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2013-02-10 01:04:17 +01:00
|
|
|
// Don't auto-slide while in overview mode
|
|
|
|
cancelAutoSlide();
|
|
|
|
|
2013-01-21 18:45:52 +01:00
|
|
|
var wasActive = dom.wrapper.classList.contains( 'overview' );
|
|
|
|
|
2012-09-21 14:58:21 +02:00
|
|
|
dom.wrapper.classList.add( 'overview' );
|
2013-01-16 21:49:10 +01:00
|
|
|
dom.wrapper.classList.remove( 'exit-overview' );
|
2013-01-18 21:31:41 +01:00
|
|
|
|
2012-11-25 15:45:16 +01:00
|
|
|
clearTimeout( activateOverviewTimeout );
|
2013-01-16 21:49:10 +01:00
|
|
|
clearTimeout( deactivateOverviewTimeout );
|
2012-11-25 15:45:16 +01:00
|
|
|
|
2013-01-21 18:45:52 +01:00
|
|
|
// Not the pretties solution, but need to let the overview
|
|
|
|
// class apply first so that slides are measured accurately
|
2013-01-21 18:22:30 +01:00
|
|
|
// before we can position them
|
2012-11-25 15:45:16 +01:00
|
|
|
activateOverviewTimeout = setTimeout( function(){
|
2012-11-23 21:48:10 +01:00
|
|
|
|
|
|
|
var horizontalSlides = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR );
|
|
|
|
|
|
|
|
for( var i = 0, len1 = horizontalSlides.length; i < len1; i++ ) {
|
|
|
|
var hslide = horizontalSlides[i],
|
|
|
|
htransform = 'translateZ(-2500px) translate(' + ( ( i - indexh ) * 105 ) + '%, 0%)';
|
|
|
|
|
|
|
|
hslide.setAttribute( 'data-index-h', i );
|
|
|
|
hslide.style.display = 'block';
|
|
|
|
hslide.style.WebkitTransform = htransform;
|
|
|
|
hslide.style.MozTransform = htransform;
|
|
|
|
hslide.style.msTransform = htransform;
|
|
|
|
hslide.style.OTransform = htransform;
|
|
|
|
hslide.style.transform = htransform;
|
|
|
|
|
|
|
|
if( hslide.classList.contains( 'stack' ) ) {
|
|
|
|
|
|
|
|
var verticalSlides = hslide.querySelectorAll( 'section' );
|
|
|
|
|
|
|
|
for( var j = 0, len2 = verticalSlides.length; j < len2; j++ ) {
|
|
|
|
var verticalIndex = i === indexh ? indexv : getPreviousVerticalIndex( hslide );
|
|
|
|
|
|
|
|
var vslide = verticalSlides[j],
|
|
|
|
vtransform = 'translate(0%, ' + ( ( j - verticalIndex ) * 105 ) + '%)';
|
|
|
|
|
|
|
|
vslide.setAttribute( 'data-index-h', i );
|
|
|
|
vslide.setAttribute( 'data-index-v', j );
|
|
|
|
vslide.style.display = 'block';
|
|
|
|
vslide.style.WebkitTransform = vtransform;
|
|
|
|
vslide.style.MozTransform = vtransform;
|
|
|
|
vslide.style.msTransform = vtransform;
|
|
|
|
vslide.style.OTransform = vtransform;
|
|
|
|
vslide.style.transform = vtransform;
|
|
|
|
|
|
|
|
// Navigate to this slide on click
|
|
|
|
vslide.addEventListener( 'click', onOverviewSlideClicked, true );
|
|
|
|
}
|
2012-11-25 15:45:16 +01:00
|
|
|
|
2012-11-23 21:48:10 +01:00
|
|
|
}
|
|
|
|
else {
|
2012-11-10 21:28:34 +01:00
|
|
|
|
|
|
|
// Navigate to this slide on click
|
2012-11-23 21:48:10 +01:00
|
|
|
hslide.addEventListener( 'click', onOverviewSlideClicked, true );
|
|
|
|
|
2012-11-10 21:28:34 +01:00
|
|
|
}
|
2012-09-21 14:58:21 +02:00
|
|
|
}
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-11-23 21:48:10 +01:00
|
|
|
layout();
|
2012-09-21 14:58:21 +02:00
|
|
|
|
2013-01-21 18:45:52 +01:00
|
|
|
if( !wasActive ) {
|
|
|
|
// Notify observers of the overview showing
|
|
|
|
dispatchEvent( 'overviewshown', {
|
|
|
|
'indexh': indexh,
|
|
|
|
'indexv': indexv,
|
|
|
|
'currentSlide': currentSlide
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
2012-11-23 21:48:10 +01:00
|
|
|
}, 10 );
|
2012-11-10 21:28:34 +01:00
|
|
|
|
2011-12-23 11:47:38 +01:00
|
|
|
}
|
2012-09-21 14:58:21 +02:00
|
|
|
|
2011-12-23 11:47:38 +01:00
|
|
|
}
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2011-12-24 06:33:28 +01:00
|
|
|
/**
|
|
|
|
* Exits the slide overview and enters the currently
|
|
|
|
* active slide.
|
|
|
|
*/
|
2011-12-23 11:47:38 +01:00
|
|
|
function deactivateOverview() {
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-09-21 15:27:31 +02:00
|
|
|
// Only proceed if enabled in config
|
2012-09-21 14:58:21 +02:00
|
|
|
if( config.overview ) {
|
2011-12-23 11:47:38 +01:00
|
|
|
|
2012-11-25 15:45:16 +01:00
|
|
|
clearTimeout( activateOverviewTimeout );
|
2013-01-16 21:49:10 +01:00
|
|
|
clearTimeout( deactivateOverviewTimeout );
|
2012-11-25 15:45:16 +01:00
|
|
|
|
2012-09-21 14:58:21 +02:00
|
|
|
dom.wrapper.classList.remove( 'overview' );
|
2013-01-18 21:31:41 +01:00
|
|
|
|
2013-01-16 21:49:10 +01:00
|
|
|
// Temporarily add a class so that transitions can do different things
|
|
|
|
// depending on whether they are exiting/entering overview, or just
|
|
|
|
// moving from slide to slide
|
|
|
|
dom.wrapper.classList.add( 'exit-overview' );
|
2013-01-18 21:31:41 +01:00
|
|
|
|
2013-01-16 21:49:10 +01:00
|
|
|
deactivateOverviewTimeout = setTimeout( function () {
|
|
|
|
dom.wrapper.classList.remove( 'exit-overview' );
|
|
|
|
}, 10);
|
2011-12-24 06:33:28 +01:00
|
|
|
|
2012-09-21 15:27:31 +02:00
|
|
|
// Select all slides
|
2012-11-10 19:59:51 +01:00
|
|
|
var slides = toArray( document.querySelectorAll( SLIDES_SELECTOR ) );
|
2011-12-23 11:47:38 +01:00
|
|
|
|
2012-09-21 14:58:21 +02:00
|
|
|
for( var i = 0, len = slides.length; i < len; i++ ) {
|
|
|
|
var element = slides[i];
|
2011-12-23 11:47:38 +01:00
|
|
|
|
2012-11-25 15:45:16 +01:00
|
|
|
element.style.display = '';
|
|
|
|
|
2012-09-21 14:58:21 +02:00
|
|
|
// Resets all transforms to use the external styles
|
|
|
|
element.style.WebkitTransform = '';
|
|
|
|
element.style.MozTransform = '';
|
|
|
|
element.style.msTransform = '';
|
|
|
|
element.style.OTransform = '';
|
|
|
|
element.style.transform = '';
|
2011-12-23 11:47:38 +01:00
|
|
|
|
2012-11-25 15:45:16 +01:00
|
|
|
element.removeEventListener( 'click', onOverviewSlideClicked, true );
|
2012-09-21 14:58:21 +02:00
|
|
|
}
|
|
|
|
|
2012-11-10 21:28:34 +01:00
|
|
|
slide( indexh, indexv );
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2013-02-10 01:04:17 +01:00
|
|
|
cueAutoSlide();
|
|
|
|
|
2013-01-21 18:45:52 +01:00
|
|
|
// Notify observers of the overview hiding
|
|
|
|
dispatchEvent( 'overviewhidden', {
|
|
|
|
'indexh': indexh,
|
|
|
|
'indexv': indexv,
|
|
|
|
'currentSlide': currentSlide
|
|
|
|
} );
|
|
|
|
|
2012-09-21 14:58:21 +02:00
|
|
|
}
|
2011-12-23 11:47:38 +01:00
|
|
|
}
|
|
|
|
|
2012-10-08 06:08:50 +02:00
|
|
|
/**
|
|
|
|
* Toggles the slide overview mode on and off.
|
|
|
|
*
|
2012-10-21 03:05:14 +02:00
|
|
|
* @param {Boolean} override Optional flag which overrides the
|
|
|
|
* toggle logic and forcibly sets the desired state. True means
|
2012-10-08 06:08:50 +02:00
|
|
|
* overview is open, false means it's closed.
|
|
|
|
*/
|
|
|
|
function toggleOverview( override ) {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-08 06:08:50 +02:00
|
|
|
if( typeof override === 'boolean' ) {
|
|
|
|
override ? activateOverview() : deactivateOverview();
|
|
|
|
}
|
|
|
|
else {
|
2013-02-10 01:11:54 +01:00
|
|
|
isOverview() ? deactivateOverview() : activateOverview();
|
2012-10-08 06:08:50 +02:00
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-08 06:08:50 +02:00
|
|
|
}
|
|
|
|
|
2011-12-24 06:33:28 +01:00
|
|
|
/**
|
|
|
|
* Checks if the overview is currently active.
|
2012-10-21 03:05:14 +02:00
|
|
|
*
|
2011-12-24 06:33:28 +01:00
|
|
|
* @return {Boolean} true if the overview is active,
|
|
|
|
* false otherwise
|
|
|
|
*/
|
2013-02-10 01:11:54 +01:00
|
|
|
function isOverview() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-01-15 02:56:11 +01:00
|
|
|
return dom.wrapper.classList.contains( 'overview' );
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-12-23 11:47:38 +01:00
|
|
|
}
|
|
|
|
|
2012-10-15 02:17:49 +02:00
|
|
|
/**
|
|
|
|
* Handling the fullscreen functionality via the fullscreen API
|
2012-10-21 03:05:14 +02:00
|
|
|
*
|
|
|
|
* @see http://fullscreen.spec.whatwg.org/
|
|
|
|
* @see https://developer.mozilla.org/en-US/docs/DOM/Using_fullscreen_mode
|
2012-10-15 02:17:49 +02:00
|
|
|
*/
|
|
|
|
function enterFullscreen() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-15 02:17:49 +02:00
|
|
|
var element = document.body;
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-10-15 02:17:49 +02:00
|
|
|
// Check which implementation is available
|
|
|
|
var requestMethod = element.requestFullScreen ||
|
|
|
|
element.webkitRequestFullScreen ||
|
|
|
|
element.mozRequestFullScreen ||
|
|
|
|
element.msRequestFullScreen;
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-10-15 02:17:49 +02:00
|
|
|
if( requestMethod ) {
|
|
|
|
requestMethod.apply( element );
|
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-15 02:17:49 +02:00
|
|
|
}
|
|
|
|
|
2012-10-08 06:08:50 +02:00
|
|
|
/**
|
2012-10-21 03:05:14 +02:00
|
|
|
* Enters the paused mode which fades everything on screen to
|
2012-10-08 06:08:50 +02:00
|
|
|
* black.
|
|
|
|
*/
|
|
|
|
function pause() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2013-02-27 22:41:45 +01:00
|
|
|
var wasPaused = dom.wrapper.classList.contains( 'paused' );
|
|
|
|
|
2013-02-10 01:04:17 +01:00
|
|
|
cancelAutoSlide();
|
2012-10-08 06:08:50 +02:00
|
|
|
dom.wrapper.classList.add( 'paused' );
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2013-02-27 22:41:45 +01:00
|
|
|
if( wasPaused === false ) {
|
|
|
|
dispatchEvent( 'paused' );
|
|
|
|
}
|
|
|
|
|
2012-10-08 06:08:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Exits from the paused mode.
|
|
|
|
*/
|
|
|
|
function resume() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2013-02-27 22:41:45 +01:00
|
|
|
var wasPaused = dom.wrapper.classList.contains( 'paused' );
|
2013-03-11 11:46:02 +01:00
|
|
|
dom.wrapper.classList.remove( 'paused' );
|
2013-02-27 22:41:45 +01:00
|
|
|
|
2013-02-10 01:04:17 +01:00
|
|
|
cueAutoSlide();
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2013-02-27 22:41:45 +01:00
|
|
|
if( wasPaused ) {
|
|
|
|
dispatchEvent( 'resumed' );
|
|
|
|
}
|
|
|
|
|
2012-10-08 06:08:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Toggles the paused mode on and off.
|
|
|
|
*/
|
|
|
|
function togglePause() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-08 06:08:50 +02:00
|
|
|
if( isPaused() ) {
|
|
|
|
resume();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
pause();
|
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-08 06:08:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if we are currently in the paused mode.
|
|
|
|
*/
|
|
|
|
function isPaused() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-08 06:08:50 +02:00
|
|
|
return dom.wrapper.classList.contains( 'paused' );
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-08 06:08:50 +02:00
|
|
|
}
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2011-06-07 21:10:59 +02:00
|
|
|
/**
|
2012-10-21 03:05:14 +02:00
|
|
|
* Steps from the current point in the presentation to the
|
|
|
|
* slide which matches the specified horizontal and vertical
|
|
|
|
* indices.
|
2012-10-15 03:02:32 +02:00
|
|
|
*
|
|
|
|
* @param {int} h Horizontal index of the target slide
|
|
|
|
* @param {int} v Vertical index of the target slide
|
2013-01-21 18:22:30 +01:00
|
|
|
* @param {int} f Optional index of a fragment within the
|
2012-11-22 15:10:34 +01:00
|
|
|
* target slide to activate
|
2013-03-08 01:51:58 +01:00
|
|
|
* @param {int} o Optional origin for use in multimaster environments
|
2011-06-07 21:10:59 +02:00
|
|
|
*/
|
2013-03-08 01:51:58 +01:00
|
|
|
function slide( h, v, f, o ) {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-07-27 04:54:36 +02:00
|
|
|
// Remember where we were at before
|
|
|
|
previousSlide = currentSlide;
|
|
|
|
|
2012-11-10 20:48:29 +01:00
|
|
|
// Query all horizontal slides in the deck
|
|
|
|
var horizontalSlides = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR );
|
2012-11-25 15:45:16 +01:00
|
|
|
|
2013-01-21 18:22:30 +01:00
|
|
|
// If no vertical index is specified and the upcoming slide is a
|
2012-11-10 20:48:29 +01:00
|
|
|
// stack, resume at its previous vertical index
|
2012-11-10 21:28:34 +01:00
|
|
|
if( v === undefined ) {
|
|
|
|
v = getPreviousVerticalIndex( horizontalSlides[ h ] );
|
2012-11-10 20:48:29 +01:00
|
|
|
}
|
|
|
|
|
2013-01-21 18:22:30 +01:00
|
|
|
// If we were on a vertical stack, remember what vertical index
|
2012-11-10 20:48:29 +01:00
|
|
|
// it was on so we can resume at the same position when returning
|
2012-11-14 03:08:04 +01:00
|
|
|
if( previousSlide && previousSlide.parentNode && previousSlide.parentNode.classList.contains( 'stack' ) ) {
|
2012-11-10 21:28:34 +01:00
|
|
|
setPreviousVerticalIndex( previousSlide.parentNode, indexv );
|
2012-11-10 20:48:29 +01:00
|
|
|
}
|
|
|
|
|
2012-03-31 05:51:37 +02:00
|
|
|
// Remember the state before this slide
|
|
|
|
var stateBefore = state.concat();
|
|
|
|
|
|
|
|
// Reset the state array
|
|
|
|
state.length = 0;
|
2012-03-30 06:13:45 +02:00
|
|
|
|
2012-06-07 04:22:13 +02:00
|
|
|
var indexhBefore = indexh,
|
|
|
|
indexvBefore = indexv;
|
|
|
|
|
2012-03-31 05:51:37 +02:00
|
|
|
// Activate and transition to the new slide
|
2012-06-07 04:22:13 +02:00
|
|
|
indexh = updateSlides( HORIZONTAL_SLIDES_SELECTOR, h === undefined ? indexh : h );
|
|
|
|
indexv = updateSlides( VERTICAL_SLIDES_SELECTOR, v === undefined ? indexv : v );
|
2011-12-05 03:07:33 +01:00
|
|
|
|
2012-11-10 15:41:26 +01:00
|
|
|
layout();
|
|
|
|
|
2012-03-30 06:13:45 +02:00
|
|
|
// Apply the new state
|
2012-03-31 05:51:37 +02:00
|
|
|
stateLoop: for( var i = 0, len = state.length; i < len; i++ ) {
|
2012-10-21 03:05:14 +02:00
|
|
|
// Check if this state existed on the previous slide. If it
|
2012-11-22 15:10:34 +01:00
|
|
|
// did, we will avoid adding it repeatedly
|
2012-03-31 05:51:37 +02:00
|
|
|
for( var j = 0; j < stateBefore.length; j++ ) {
|
|
|
|
if( stateBefore[j] === state[i] ) {
|
|
|
|
stateBefore.splice( j, 1 );
|
|
|
|
continue stateLoop;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-30 06:13:45 +02:00
|
|
|
document.documentElement.classList.add( state[i] );
|
2012-03-31 05:51:37 +02:00
|
|
|
|
2012-05-04 06:01:20 +02:00
|
|
|
// Dispatch custom event matching the state's name
|
|
|
|
dispatchEvent( state[i] );
|
2012-03-31 05:51:37 +02:00
|
|
|
}
|
|
|
|
|
2013-01-21 18:22:30 +01:00
|
|
|
// Clean up the remains of the previous state
|
2012-03-31 05:51:37 +02:00
|
|
|
while( stateBefore.length ) {
|
|
|
|
document.documentElement.classList.remove( stateBefore.pop() );
|
2012-03-30 06:13:45 +02:00
|
|
|
}
|
|
|
|
|
2012-10-04 14:56:43 +02:00
|
|
|
// If the overview is active, re-activate it to update positions
|
2013-02-10 01:11:54 +01:00
|
|
|
if( isOverview() ) {
|
2011-12-23 11:47:38 +01:00
|
|
|
activateOverview();
|
|
|
|
}
|
|
|
|
|
2012-10-20 16:57:51 +02:00
|
|
|
// Update the URL hash after a delay since updating it mid-transition
|
|
|
|
// is likely to cause visual lag
|
2012-11-22 15:10:34 +01:00
|
|
|
writeURL( 1500 );
|
2012-05-04 06:01:20 +02:00
|
|
|
|
2012-07-27 04:54:36 +02:00
|
|
|
// Find the current horizontal slide and any possible vertical slides
|
|
|
|
// within it
|
|
|
|
var currentHorizontalSlide = horizontalSlides[ indexh ],
|
|
|
|
currentVerticalSlides = currentHorizontalSlide.querySelectorAll( 'section' );
|
2012-06-07 04:46:21 +02:00
|
|
|
|
2012-07-27 04:54:36 +02:00
|
|
|
// Store references to the previous and current slides
|
|
|
|
currentSlide = currentVerticalSlides[ indexv ] || currentHorizontalSlide;
|
2012-06-07 04:46:21 +02:00
|
|
|
|
2012-11-25 15:45:16 +01:00
|
|
|
|
2012-11-22 15:10:34 +01:00
|
|
|
// Show fragment, if specified
|
2013-01-14 15:29:02 +01:00
|
|
|
if( typeof f !== 'undefined' ) {
|
2013-02-27 19:40:42 +01:00
|
|
|
var fragments = sortFragments( currentSlide.querySelectorAll( '.fragment' ) );
|
2012-11-22 15:10:34 +01:00
|
|
|
|
|
|
|
toArray( fragments ).forEach( function( fragment, indexf ) {
|
|
|
|
if( indexf < f ) {
|
|
|
|
fragment.classList.add( 'visible' );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fragment.classList.remove( 'visible' );
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
2012-07-27 04:54:36 +02:00
|
|
|
// Dispatch an event if the slide changed
|
|
|
|
if( indexh !== indexhBefore || indexv !== indexvBefore ) {
|
2012-06-07 04:22:13 +02:00
|
|
|
dispatchEvent( 'slidechanged', {
|
2012-10-21 03:05:14 +02:00
|
|
|
'indexh': indexh,
|
2012-06-07 04:46:21 +02:00
|
|
|
'indexv': indexv,
|
2012-07-27 04:54:36 +02:00
|
|
|
'previousSlide': previousSlide,
|
2013-03-08 01:51:58 +01:00
|
|
|
'currentSlide': currentSlide,
|
|
|
|
'origin': o
|
2012-06-07 04:22:13 +02:00
|
|
|
} );
|
|
|
|
}
|
2012-07-27 04:54:36 +02:00
|
|
|
else {
|
|
|
|
// Ensure that the previous slide is never the same as the current
|
|
|
|
previousSlide = null;
|
|
|
|
}
|
2012-07-27 05:22:15 +02:00
|
|
|
|
2012-10-21 03:05:14 +02:00
|
|
|
// Solves an edge case where the previous slide maintains the
|
|
|
|
// 'present' class when navigating between adjacent vertical
|
2012-07-27 05:22:15 +02:00
|
|
|
// stacks
|
|
|
|
if( previousSlide ) {
|
|
|
|
previousSlide.classList.remove( 'present' );
|
2013-01-11 22:43:43 +01:00
|
|
|
|
2013-01-21 20:55:45 +01:00
|
|
|
// Reset all slides upon navigate to home
|
|
|
|
// Issue: #285
|
|
|
|
if ( document.querySelector( HOME_SLIDE_SELECTOR ).classList.contains( 'present' ) ) {
|
|
|
|
// Launch async task
|
|
|
|
setTimeout( function () {
|
|
|
|
var slides = toArray( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.stack') ), i;
|
|
|
|
for( i in slides ) {
|
|
|
|
if( slides[i] ) {
|
|
|
|
// Reset stack
|
|
|
|
setPreviousVerticalIndex( slides[i], 0 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, 0 );
|
|
|
|
}
|
2012-07-27 05:22:15 +02:00
|
|
|
}
|
2012-11-10 19:59:51 +01:00
|
|
|
|
|
|
|
updateControls();
|
|
|
|
updateProgress();
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-06-07 21:10:59 +02:00
|
|
|
}
|
2011-12-05 03:07:33 +01:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
/**
|
|
|
|
* Updates one dimension of slides by showing the slide
|
|
|
|
* with the specified index.
|
2012-10-21 03:05:14 +02:00
|
|
|
*
|
2012-10-15 03:02:32 +02:00
|
|
|
* @param {String} selector A CSS selector that will fetch
|
|
|
|
* the group of slides we are working with
|
|
|
|
* @param {Number} index The index of the slide that should be
|
|
|
|
* shown
|
2012-10-21 03:05:14 +02:00
|
|
|
*
|
2012-10-15 03:02:32 +02:00
|
|
|
* @return {Number} The index of the slide that is now shown,
|
2012-10-21 03:05:14 +02:00
|
|
|
* might differ from the passed in index if it was out of
|
2012-10-15 03:02:32 +02:00
|
|
|
* bounds.
|
|
|
|
*/
|
|
|
|
function updateSlides( selector, index ) {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
// Select all slides and convert the NodeList result to
|
|
|
|
// an array
|
2012-11-10 19:59:51 +01:00
|
|
|
var slides = toArray( document.querySelectorAll( selector ) ),
|
2012-10-15 03:02:32 +02:00
|
|
|
slidesLength = slides.length;
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
if( slidesLength ) {
|
|
|
|
|
|
|
|
// Should the index loop?
|
|
|
|
if( config.loop ) {
|
|
|
|
index %= slidesLength;
|
|
|
|
|
|
|
|
if( index < 0 ) {
|
|
|
|
index = slidesLength + index;
|
|
|
|
}
|
|
|
|
}
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
// Enforce max and minimum index bounds
|
|
|
|
index = Math.max( Math.min( index, slidesLength - 1 ), 0 );
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
for( var i = 0; i < slidesLength; i++ ) {
|
|
|
|
var element = slides[i];
|
|
|
|
|
2012-10-21 03:05:14 +02:00
|
|
|
// Optimization; hide all slides that are three or more steps
|
2012-10-15 03:02:32 +02:00
|
|
|
// away from the present slide
|
2013-02-10 01:11:54 +01:00
|
|
|
if( isOverview() === false ) {
|
2012-10-15 03:02:32 +02:00
|
|
|
// The distance loops so that it measures 1 between the first
|
|
|
|
// and last slides
|
|
|
|
var distance = Math.abs( ( index - i ) % ( slidesLength - 3 ) ) || 0;
|
|
|
|
|
|
|
|
element.style.display = distance > 3 ? 'none' : 'block';
|
|
|
|
}
|
|
|
|
|
|
|
|
slides[i].classList.remove( 'past' );
|
|
|
|
slides[i].classList.remove( 'present' );
|
|
|
|
slides[i].classList.remove( 'future' );
|
|
|
|
|
|
|
|
if( i < index ) {
|
|
|
|
// Any element previous to index is given the 'past' class
|
|
|
|
slides[i].classList.add( 'past' );
|
|
|
|
}
|
|
|
|
else if( i > index ) {
|
|
|
|
// Any element subsequent to index is given the 'future' class
|
|
|
|
slides[i].classList.add( 'future' );
|
|
|
|
}
|
|
|
|
|
|
|
|
// If this element contains vertical slides
|
|
|
|
if( element.querySelector( 'section' ) ) {
|
|
|
|
slides[i].classList.add( 'stack' );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mark the current slide as present
|
|
|
|
slides[index].classList.add( 'present' );
|
|
|
|
|
|
|
|
// If this slide has a state associated with it, add it
|
|
|
|
// onto the current state of the deck
|
|
|
|
var slideState = slides[index].getAttribute( 'data-state' );
|
|
|
|
if( slideState ) {
|
|
|
|
state = state.concat( slideState.split( ' ' ) );
|
|
|
|
}
|
|
|
|
|
2012-10-21 03:05:14 +02:00
|
|
|
// If this slide has a data-autoslide attribtue associated use this as
|
2012-10-15 03:02:32 +02:00
|
|
|
// autoSlide value otherwise use the global configured time
|
|
|
|
var slideAutoSlide = slides[index].getAttribute( 'data-autoslide' );
|
|
|
|
if( slideAutoSlide ) {
|
2012-11-11 16:01:05 +01:00
|
|
|
autoSlide = parseInt( slideAutoSlide, 10 );
|
2013-01-31 05:59:37 +01:00
|
|
|
}
|
2013-01-02 15:14:28 +01:00
|
|
|
else {
|
2012-11-11 16:01:05 +01:00
|
|
|
autoSlide = config.autoSlide;
|
2012-10-15 03:02:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
2012-10-21 03:05:14 +02:00
|
|
|
// Since there are no slides we can't be anywhere beyond the
|
2012-10-15 03:02:32 +02:00
|
|
|
// zeroth index
|
|
|
|
index = 0;
|
|
|
|
}
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
return index;
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
}
|
|
|
|
|
2011-12-05 03:07:33 +01:00
|
|
|
/**
|
2012-11-10 19:59:51 +01:00
|
|
|
* Updates the progress bar to reflect the current slide.
|
|
|
|
*/
|
|
|
|
function updateProgress() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-11-10 19:59:51 +01:00
|
|
|
// Update progress if enabled
|
|
|
|
if( config.progress && dom.progress ) {
|
|
|
|
|
|
|
|
var horizontalSlides = toArray( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );
|
|
|
|
|
|
|
|
// The number of past and total slides
|
|
|
|
var totalCount = document.querySelectorAll( SLIDES_SELECTOR + ':not(.stack)' ).length;
|
|
|
|
var pastCount = 0;
|
|
|
|
|
|
|
|
// Step through all slides and count the past ones
|
|
|
|
mainLoop: for( var i = 0; i < horizontalSlides.length; i++ ) {
|
|
|
|
|
|
|
|
var horizontalSlide = horizontalSlides[i];
|
|
|
|
var verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );
|
|
|
|
|
|
|
|
for( var j = 0; j < verticalSlides.length; j++ ) {
|
|
|
|
|
|
|
|
// Stop as soon as we arrive at the present
|
2012-11-11 16:01:05 +01:00
|
|
|
if( verticalSlides[j].classList.contains( 'present' ) ) {
|
|
|
|
break mainLoop;
|
|
|
|
}
|
2012-11-10 19:59:51 +01:00
|
|
|
|
2012-11-11 16:01:05 +01:00
|
|
|
pastCount++;
|
2012-11-10 19:59:51 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stop as soon as we arrive at the present
|
2012-11-11 16:01:05 +01:00
|
|
|
if( horizontalSlide.classList.contains( 'present' ) ) {
|
|
|
|
break;
|
|
|
|
}
|
2012-11-10 19:59:51 +01:00
|
|
|
|
|
|
|
// Don't count the wrapping section for vertical slides
|
2012-11-11 16:01:05 +01:00
|
|
|
if( horizontalSlide.classList.contains( 'stack' ) === false ) {
|
|
|
|
pastCount++;
|
|
|
|
}
|
2012-11-10 19:59:51 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
dom.progressbar.style.width = ( pastCount / ( totalCount - 1 ) ) * window.innerWidth + 'px';
|
|
|
|
|
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-11-10 19:59:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the state of all control/navigation arrows.
|
2011-12-05 03:07:33 +01:00
|
|
|
*/
|
|
|
|
function updateControls() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
if ( config.controls && dom.controls ) {
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
var routes = availableRoutes();
|
|
|
|
|
|
|
|
// Remove the 'enabled' class from all directions
|
2012-11-10 17:40:19 +01:00
|
|
|
dom.controlsLeft.concat( dom.controlsRight )
|
|
|
|
.concat( dom.controlsUp )
|
|
|
|
.concat( dom.controlsDown )
|
|
|
|
.concat( dom.controlsPrev )
|
|
|
|
.concat( dom.controlsNext ).forEach( function( node ) {
|
2012-10-15 03:02:32 +02:00
|
|
|
node.classList.remove( 'enabled' );
|
|
|
|
} );
|
|
|
|
|
|
|
|
// Add the 'enabled' class to the available routes
|
2012-11-11 16:01:05 +01:00
|
|
|
if( routes.left ) dom.controlsLeft.forEach( function( el ) { el.classList.add( 'enabled' ); } );
|
|
|
|
if( routes.right ) dom.controlsRight.forEach( function( el ) { el.classList.add( 'enabled' ); } );
|
|
|
|
if( routes.up ) dom.controlsUp.forEach( function( el ) { el.classList.add( 'enabled' ); } );
|
|
|
|
if( routes.down ) dom.controlsDown.forEach( function( el ) { el.classList.add( 'enabled' ); } );
|
2012-11-10 17:40:19 +01:00
|
|
|
|
|
|
|
// Prev/next buttons
|
2012-11-11 16:01:05 +01:00
|
|
|
if( routes.left || routes.up ) dom.controlsPrev.forEach( function( el ) { el.classList.add( 'enabled' ); } );
|
|
|
|
if( routes.right || routes.down ) dom.controlsNext.forEach( function( el ) { el.classList.add( 'enabled' ); } );
|
2012-10-15 03:02:32 +02:00
|
|
|
|
2012-06-10 11:53:44 +02:00
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-12-05 03:07:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-12-05 03:55:48 +01:00
|
|
|
* Determine what available routes there are for navigation.
|
2012-10-21 03:05:14 +02:00
|
|
|
*
|
2011-12-05 03:55:48 +01:00
|
|
|
* @return {Object} containing four booleans: left/right/up/down
|
2011-12-05 03:07:33 +01:00
|
|
|
*/
|
|
|
|
function availableRoutes() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-04 14:56:43 +02:00
|
|
|
var horizontalSlides = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ),
|
|
|
|
verticalSlides = document.querySelectorAll( VERTICAL_SLIDES_SELECTOR );
|
2011-12-05 03:07:33 +01:00
|
|
|
|
|
|
|
return {
|
2013-03-04 22:55:39 +01:00
|
|
|
left: indexh > 0 || config.loop,
|
|
|
|
right: indexh < horizontalSlides.length - 1 || config.loop,
|
2011-12-05 03:07:33 +01:00
|
|
|
up: indexv > 0,
|
|
|
|
down: indexv < verticalSlides.length - 1
|
|
|
|
};
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-12-05 03:07:33 +01:00
|
|
|
}
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2011-06-07 21:10:59 +02:00
|
|
|
/**
|
|
|
|
* Reads the current URL (hash) and navigates accordingly.
|
|
|
|
*/
|
|
|
|
function readURL() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-08-21 04:13:00 +02:00
|
|
|
var hash = window.location.hash;
|
|
|
|
|
|
|
|
// Attempt to parse the hash as either an index or name
|
|
|
|
var bits = hash.slice( 2 ).split( '/' ),
|
|
|
|
name = hash.replace( /#|\//gi, '' );
|
|
|
|
|
2012-10-21 03:05:14 +02:00
|
|
|
// If the first bit is invalid and there is a name we can
|
2012-08-21 04:13:00 +02:00
|
|
|
// assume that this is a named link
|
2012-10-04 14:56:43 +02:00
|
|
|
if( isNaN( parseInt( bits[0], 10 ) ) && name.length ) {
|
2012-08-21 04:13:00 +02:00
|
|
|
// Find the slide with the specified name
|
2012-10-15 03:02:32 +02:00
|
|
|
var element = document.querySelector( '#' + name );
|
2012-08-21 04:13:00 +02:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
if( element ) {
|
2012-08-21 04:13:00 +02:00
|
|
|
// Find the position of the named slide and navigate to it
|
2012-10-15 03:02:32 +02:00
|
|
|
var indices = Reveal.getIndices( element );
|
|
|
|
slide( indices.h, indices.v );
|
2012-08-21 04:13:00 +02:00
|
|
|
}
|
|
|
|
// If the slide doesn't exist, navigate to the current slide
|
|
|
|
else {
|
2012-10-15 03:02:32 +02:00
|
|
|
slide( indexh, indexv );
|
2012-08-21 04:13:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Read the index components of the hash
|
2012-10-04 14:56:43 +02:00
|
|
|
var h = parseInt( bits[0], 10 ) || 0,
|
|
|
|
v = parseInt( bits[1], 10 ) || 0;
|
2012-07-17 10:05:55 +02:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
slide( h, v );
|
2012-08-21 04:13:00 +02:00
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-06-07 21:10:59 +02:00
|
|
|
}
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2011-06-07 21:10:59 +02:00
|
|
|
/**
|
|
|
|
* Updates the page URL (hash) to reflect the current
|
2012-10-21 03:05:14 +02:00
|
|
|
* state.
|
2012-11-22 15:10:34 +01:00
|
|
|
*
|
2013-01-21 18:22:30 +01:00
|
|
|
* @param {Number} delay The time in ms to wait before
|
2012-11-22 15:10:34 +01:00
|
|
|
* writing the hash
|
2011-06-07 21:10:59 +02:00
|
|
|
*/
|
2012-11-22 15:10:34 +01:00
|
|
|
function writeURL( delay ) {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-12-31 07:33:19 +01:00
|
|
|
if( config.history ) {
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-11-22 15:10:34 +01:00
|
|
|
// Make sure there's never more than one timeout running
|
|
|
|
clearTimeout( writeURLTimeout );
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-11-22 15:10:34 +01:00
|
|
|
// If a delay is specified, timeout this call
|
|
|
|
if( typeof delay === 'number' ) {
|
|
|
|
writeURLTimeout = setTimeout( writeURL, delay );
|
2012-11-10 16:39:59 +01:00
|
|
|
}
|
|
|
|
else {
|
2012-11-22 15:10:34 +01:00
|
|
|
var url = '/';
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-11-22 15:10:34 +01:00
|
|
|
// If the current slide has an ID, use that as a named link
|
|
|
|
if( currentSlide && typeof currentSlide.getAttribute( 'id' ) === 'string' ) {
|
|
|
|
url = '/' + currentSlide.getAttribute( 'id' );
|
|
|
|
}
|
|
|
|
// Otherwise use the /h/v index
|
|
|
|
else {
|
|
|
|
if( indexh > 0 || indexv > 0 ) url += indexh;
|
|
|
|
if( indexv > 0 ) url += '/' + indexv;
|
|
|
|
}
|
|
|
|
|
|
|
|
window.location.hash = url;
|
|
|
|
}
|
2011-12-31 07:33:19 +01:00
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-06-07 21:10:59 +02:00
|
|
|
}
|
2011-12-05 03:07:33 +01:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
/**
|
2012-10-21 03:05:14 +02:00
|
|
|
* Retrieves the h/v location of the current, or specified,
|
2012-10-15 03:02:32 +02:00
|
|
|
* slide.
|
2012-10-21 03:05:14 +02:00
|
|
|
*
|
|
|
|
* @param {HTMLElement} slide If specified, the returned
|
|
|
|
* index will be for this slide rather than the currently
|
2012-10-15 03:02:32 +02:00
|
|
|
* active one
|
2012-10-21 03:05:14 +02:00
|
|
|
*
|
2012-10-15 03:02:32 +02:00
|
|
|
* @return {Object} { h: <int>, v: <int> }
|
|
|
|
*/
|
|
|
|
function getIndices( slide ) {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
// By default, return the current indices
|
|
|
|
var h = indexh,
|
|
|
|
v = indexv;
|
|
|
|
|
|
|
|
// If a slide is specified, return the indices of that slide
|
|
|
|
if( slide ) {
|
|
|
|
var isVertical = !!slide.parentNode.nodeName.match( /section/gi );
|
|
|
|
var slideh = isVertical ? slide.parentNode : slide;
|
|
|
|
|
|
|
|
// Select all horizontal slides
|
2012-11-10 19:59:51 +01:00
|
|
|
var horizontalSlides = toArray( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );
|
2012-10-15 03:02:32 +02:00
|
|
|
|
|
|
|
// Now that we know which the horizontal slide is, get its index
|
|
|
|
h = Math.max( horizontalSlides.indexOf( slideh ), 0 );
|
|
|
|
|
|
|
|
// If this is a vertical slide, grab the vertical index
|
|
|
|
if( isVertical ) {
|
2013-01-02 15:14:28 +01:00
|
|
|
v = Math.max( toArray( slide.parentNode.querySelectorAll( 'section' ) ).indexOf( slide ), 0 );
|
2012-10-15 03:02:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return { h: h, v: v };
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
}
|
|
|
|
|
2011-12-05 03:07:33 +01:00
|
|
|
/**
|
2011-12-22 05:22:49 +01:00
|
|
|
* Navigate to the next slide fragment.
|
2012-10-21 03:05:14 +02:00
|
|
|
*
|
2011-12-05 03:07:33 +01:00
|
|
|
* @return {Boolean} true if there was a next fragment,
|
|
|
|
* false otherwise
|
|
|
|
*/
|
2011-12-22 05:22:49 +01:00
|
|
|
function nextFragment() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-12-22 05:22:49 +01:00
|
|
|
// Vertical slides:
|
2011-12-17 21:55:25 +01:00
|
|
|
if( document.querySelector( VERTICAL_SLIDES_SELECTOR + '.present' ) ) {
|
2013-02-27 19:40:42 +01:00
|
|
|
var verticalFragments = sortFragments( document.querySelectorAll( VERTICAL_SLIDES_SELECTOR + '.present .fragment:not(.visible)' ) );
|
|
|
|
|
2011-12-17 21:55:25 +01:00
|
|
|
if( verticalFragments.length ) {
|
2012-01-15 02:56:11 +01:00
|
|
|
verticalFragments[0].classList.add( 'visible' );
|
2012-06-01 03:31:28 +02:00
|
|
|
|
|
|
|
// Notify subscribers of the change
|
|
|
|
dispatchEvent( 'fragmentshown', { fragment: verticalFragments[0] } );
|
2011-12-17 21:55:25 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2011-12-22 05:22:49 +01:00
|
|
|
// Horizontal slides:
|
2011-12-17 21:55:25 +01:00
|
|
|
else {
|
2013-02-27 19:40:42 +01:00
|
|
|
var horizontalFragments = sortFragments( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.present .fragment:not(.visible)' ) );
|
|
|
|
|
2011-12-17 21:55:25 +01:00
|
|
|
if( horizontalFragments.length ) {
|
2012-01-15 02:56:11 +01:00
|
|
|
horizontalFragments[0].classList.add( 'visible' );
|
2012-06-01 03:31:28 +02:00
|
|
|
|
|
|
|
// Notify subscribers of the change
|
|
|
|
dispatchEvent( 'fragmentshown', { fragment: horizontalFragments[0] } );
|
2011-12-17 21:55:25 +01:00
|
|
|
return true;
|
|
|
|
}
|
2011-12-05 03:07:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-12-05 03:07:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Navigate to the previous slide fragment.
|
2012-10-21 03:05:14 +02:00
|
|
|
*
|
2011-12-05 03:07:33 +01:00
|
|
|
* @return {Boolean} true if there was a previous fragment,
|
|
|
|
* false otherwise
|
|
|
|
*/
|
|
|
|
function previousFragment() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-12-22 05:22:49 +01:00
|
|
|
// Vertical slides:
|
2011-12-17 21:55:25 +01:00
|
|
|
if( document.querySelector( VERTICAL_SLIDES_SELECTOR + '.present' ) ) {
|
2013-02-27 19:40:42 +01:00
|
|
|
var verticalFragments = sortFragments( document.querySelectorAll( VERTICAL_SLIDES_SELECTOR + '.present .fragment.visible' ) );
|
|
|
|
|
2011-12-17 21:55:25 +01:00
|
|
|
if( verticalFragments.length ) {
|
2012-01-15 02:56:11 +01:00
|
|
|
verticalFragments[ verticalFragments.length - 1 ].classList.remove( 'visible' );
|
2012-06-01 03:31:28 +02:00
|
|
|
|
|
|
|
// Notify subscribers of the change
|
2012-06-20 18:12:04 +02:00
|
|
|
dispatchEvent( 'fragmenthidden', { fragment: verticalFragments[ verticalFragments.length - 1 ] } );
|
2011-12-17 21:55:25 +01:00
|
|
|
return true;
|
|
|
|
}
|
2011-12-05 03:07:33 +01:00
|
|
|
}
|
2011-12-22 05:22:49 +01:00
|
|
|
// Horizontal slides:
|
2011-12-17 21:55:25 +01:00
|
|
|
else {
|
2013-02-27 19:40:42 +01:00
|
|
|
var horizontalFragments = sortFragments( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.present .fragment.visible' ) );
|
|
|
|
|
2011-12-17 21:55:25 +01:00
|
|
|
if( horizontalFragments.length ) {
|
2012-01-15 02:56:11 +01:00
|
|
|
horizontalFragments[ horizontalFragments.length - 1 ].classList.remove( 'visible' );
|
2012-06-01 03:31:28 +02:00
|
|
|
|
|
|
|
// Notify subscribers of the change
|
2012-06-20 18:12:04 +02:00
|
|
|
dispatchEvent( 'fragmenthidden', { fragment: horizontalFragments[ horizontalFragments.length - 1 ] } );
|
2011-12-17 21:55:25 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2011-12-05 03:07:33 +01:00
|
|
|
return false;
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-12-05 03:07:33 +01:00
|
|
|
}
|
2012-07-16 01:21:47 +02:00
|
|
|
|
2012-09-21 15:27:31 +02:00
|
|
|
/**
|
|
|
|
* Cues a new automated slide if enabled in the config.
|
|
|
|
*/
|
2012-07-16 01:21:47 +02:00
|
|
|
function cueAutoSlide() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-07-16 01:21:47 +02:00
|
|
|
clearTimeout( autoSlideTimeout );
|
|
|
|
|
|
|
|
// Cue the next auto-slide if enabled
|
2013-02-10 01:11:54 +01:00
|
|
|
if( autoSlide && !isPaused() && !isOverview() ) {
|
2012-10-11 19:13:18 +02:00
|
|
|
autoSlideTimeout = setTimeout( navigateNext, autoSlide );
|
2012-07-16 01:21:47 +02:00
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-07-16 01:21:47 +02:00
|
|
|
}
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2013-02-10 01:04:17 +01:00
|
|
|
/**
|
|
|
|
* Cancels any ongoing request to auto-slide.
|
|
|
|
*/
|
|
|
|
function cancelAutoSlide() {
|
|
|
|
|
|
|
|
clearTimeout( autoSlideTimeout );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-06-07 21:10:59 +02:00
|
|
|
function navigateLeft() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-12-05 03:07:33 +01:00
|
|
|
// Prioritize hiding fragments
|
2013-03-04 22:17:01 +01:00
|
|
|
if( availableRoutes().left && ( isOverview() || previousFragment() === false ) ) {
|
2012-11-10 20:48:29 +01:00
|
|
|
slide( indexh - 1 );
|
2011-12-05 03:07:33 +01:00
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-06-07 21:10:59 +02:00
|
|
|
}
|
2012-10-04 14:56:43 +02:00
|
|
|
|
2011-06-07 21:10:59 +02:00
|
|
|
function navigateRight() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-12-05 03:07:33 +01:00
|
|
|
// Prioritize revealing fragments
|
2013-03-04 22:17:01 +01:00
|
|
|
if( availableRoutes().right && ( isOverview() || nextFragment() === false ) ) {
|
2012-11-10 20:48:29 +01:00
|
|
|
slide( indexh + 1 );
|
2011-12-05 03:07:33 +01:00
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-06-07 21:10:59 +02:00
|
|
|
}
|
2012-10-04 14:56:43 +02:00
|
|
|
|
2011-06-07 21:10:59 +02:00
|
|
|
function navigateUp() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-12-05 03:07:33 +01:00
|
|
|
// Prioritize hiding fragments
|
2013-02-10 01:11:54 +01:00
|
|
|
if( availableRoutes().up && isOverview() || previousFragment() === false ) {
|
2012-06-07 04:22:13 +02:00
|
|
|
slide( indexh, indexv - 1 );
|
2011-12-05 03:07:33 +01:00
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-06-07 21:10:59 +02:00
|
|
|
}
|
2012-10-04 14:56:43 +02:00
|
|
|
|
2011-06-07 21:10:59 +02:00
|
|
|
function navigateDown() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-12-05 03:07:33 +01:00
|
|
|
// Prioritize revealing fragments
|
2013-02-10 01:11:54 +01:00
|
|
|
if( availableRoutes().down && isOverview() || nextFragment() === false ) {
|
2012-06-07 04:22:13 +02:00
|
|
|
slide( indexh, indexv + 1 );
|
2011-12-05 03:07:33 +01:00
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2011-06-07 21:10:59 +02:00
|
|
|
}
|
2012-03-28 07:16:16 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Navigates backwards, prioritized in the following order:
|
|
|
|
* 1) Previous fragment
|
|
|
|
* 2) Previous vertical slide
|
|
|
|
* 3) Previous horizontal slide
|
|
|
|
*/
|
|
|
|
function navigatePrev() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-03-28 07:16:16 +02:00
|
|
|
// Prioritize revealing fragments
|
|
|
|
if( previousFragment() === false ) {
|
|
|
|
if( availableRoutes().up ) {
|
|
|
|
navigateUp();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Fetch the previous horizontal slide, if there is one
|
2012-11-10 20:48:29 +01:00
|
|
|
var previousSlide = document.querySelector( HORIZONTAL_SLIDES_SELECTOR + '.past:nth-child(' + indexh + ')' );
|
2012-03-28 07:16:16 +02:00
|
|
|
|
|
|
|
if( previousSlide ) {
|
2012-11-10 20:48:29 +01:00
|
|
|
indexv = ( previousSlide.querySelectorAll( 'section' ).length + 1 ) || undefined;
|
2012-03-28 07:16:16 +02:00
|
|
|
indexh --;
|
|
|
|
slide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-03-28 07:16:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Same as #navigatePrev() but navigates forwards.
|
|
|
|
*/
|
|
|
|
function navigateNext() {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-03-28 07:16:16 +02:00
|
|
|
// Prioritize revealing fragments
|
|
|
|
if( nextFragment() === false ) {
|
|
|
|
availableRoutes().down ? navigateDown() : navigateRight();
|
|
|
|
}
|
2012-07-16 01:21:47 +02:00
|
|
|
|
2012-10-21 03:05:14 +02:00
|
|
|
// If auto-sliding is enabled we need to cue up
|
2012-07-16 01:21:47 +02:00
|
|
|
// another timeout
|
|
|
|
cueAutoSlide();
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-03-28 07:16:16 +02:00
|
|
|
}
|
2012-10-14 10:26:40 +02:00
|
|
|
|
2013-02-11 19:51:40 +01:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
// --------------------------------------------------------------------//
|
|
|
|
// ----------------------------- EVENTS -------------------------------//
|
|
|
|
// --------------------------------------------------------------------//
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handler for the document level 'keydown' event.
|
2012-10-21 03:05:14 +02:00
|
|
|
*
|
2012-10-15 03:02:32 +02:00
|
|
|
* @param {Object} event
|
|
|
|
*/
|
|
|
|
function onDocumentKeyDown( event ) {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
|
|
|
// Check if there's a focused element that could be using
|
2012-10-25 03:30:52 +02:00
|
|
|
// the keyboard
|
|
|
|
var activeElement = document.activeElement;
|
2012-11-11 16:01:05 +01:00
|
|
|
var hasFocus = !!( document.activeElement && ( document.activeElement.type || document.activeElement.href || document.activeElement.contentEditable !== 'inherit' ) );
|
2012-10-25 03:30:52 +02:00
|
|
|
|
2013-01-21 18:22:30 +01:00
|
|
|
// Disregard the event if there's a focused element or a
|
2012-10-25 03:30:52 +02:00
|
|
|
// keyboard modifier key is present
|
2013-03-10 12:26:24 +01:00
|
|
|
if( hasFocus || (event.shiftKey && event.keyCode !== 32) || event.altKey || event.ctrlKey || event.metaKey ) return;
|
2012-10-15 03:02:32 +02:00
|
|
|
|
|
|
|
var triggered = true;
|
|
|
|
|
2013-01-31 23:44:15 +01:00
|
|
|
// while paused only allow "unpausing" keyboard events (b and .)
|
2013-02-03 07:31:27 +01:00
|
|
|
if( isPaused() && [66,190,191].indexOf( event.keyCode ) === -1 ) {
|
2013-01-31 23:44:15 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
switch( event.keyCode ) {
|
|
|
|
// p, page up
|
2012-10-21 03:05:14 +02:00
|
|
|
case 80: case 33: navigatePrev(); break;
|
2012-10-15 03:02:32 +02:00
|
|
|
// n, page down
|
|
|
|
case 78: case 34: navigateNext(); break;
|
|
|
|
// h, left
|
|
|
|
case 72: case 37: navigateLeft(); break;
|
|
|
|
// l, right
|
|
|
|
case 76: case 39: navigateRight(); break;
|
|
|
|
// k, up
|
|
|
|
case 75: case 38: navigateUp(); break;
|
|
|
|
// j, down
|
|
|
|
case 74: case 40: navigateDown(); break;
|
|
|
|
// home
|
|
|
|
case 36: slide( 0 ); break;
|
|
|
|
// end
|
|
|
|
case 35: slide( Number.MAX_VALUE ); break;
|
|
|
|
// space
|
2013-03-10 12:26:24 +01:00
|
|
|
case 32: isOverview() ? deactivateOverview() : event.shiftKey ? navigatePrev() : navigateNext(); break;
|
2012-10-15 03:02:32 +02:00
|
|
|
// return
|
2013-02-10 01:11:54 +01:00
|
|
|
case 13: isOverview() ? deactivateOverview() : triggered = false; break;
|
2013-01-18 16:59:38 +01:00
|
|
|
// b, period, Logitech presenter tools "black screen" button
|
|
|
|
case 66: case 190: case 191: togglePause(); break;
|
2012-10-15 03:02:32 +02:00
|
|
|
// f
|
|
|
|
case 70: enterFullscreen(); break;
|
|
|
|
default:
|
|
|
|
triggered = false;
|
|
|
|
}
|
|
|
|
|
2012-10-21 03:05:14 +02:00
|
|
|
// If the input resulted in a triggered action we should prevent
|
2012-10-15 03:02:32 +02:00
|
|
|
// the browsers default behavior
|
|
|
|
if( triggered ) {
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
else if ( event.keyCode === 27 && supports3DTransforms ) {
|
|
|
|
toggleOverview();
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
|
2012-10-21 03:05:14 +02:00
|
|
|
// If auto-sliding is enabled we need to cue up
|
2012-10-15 03:02:32 +02:00
|
|
|
// another timeout
|
|
|
|
cueAutoSlide();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-03-09 01:31:36 +01:00
|
|
|
* Handler for the 'touchstart' event, enables support for
|
2013-03-04 23:30:28 +01:00
|
|
|
* swipe and pinch gestures.
|
2012-10-15 03:02:32 +02:00
|
|
|
*/
|
2013-03-04 23:30:28 +01:00
|
|
|
function onTouchStart( event ) {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
touch.startX = event.touches[0].clientX;
|
|
|
|
touch.startY = event.touches[0].clientY;
|
|
|
|
touch.startCount = event.touches.length;
|
|
|
|
|
2012-10-21 03:05:14 +02:00
|
|
|
// If there's two touches we need to memorize the distance
|
2012-10-15 03:02:32 +02:00
|
|
|
// between those two points to detect pinching
|
|
|
|
if( event.touches.length === 2 && config.overview ) {
|
|
|
|
touch.startSpan = distanceBetween( {
|
|
|
|
x: event.touches[1].clientX,
|
|
|
|
y: event.touches[1].clientY
|
|
|
|
}, {
|
|
|
|
x: touch.startX,
|
|
|
|
y: touch.startY
|
|
|
|
} );
|
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
}
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
/**
|
2013-03-04 23:30:28 +01:00
|
|
|
* Handler for the 'touchmove' event.
|
2012-10-15 03:02:32 +02:00
|
|
|
*/
|
2013-03-04 23:30:28 +01:00
|
|
|
function onTouchMove( event ) {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
// Each touch should only trigger one action
|
|
|
|
if( !touch.handled ) {
|
|
|
|
var currentX = event.touches[0].clientX;
|
|
|
|
var currentY = event.touches[0].clientY;
|
|
|
|
|
2012-10-21 03:05:14 +02:00
|
|
|
// If the touch started off with two points and still has
|
2012-10-15 03:02:32 +02:00
|
|
|
// two active touches; test for the pinch gesture
|
|
|
|
if( event.touches.length === 2 && touch.startCount === 2 && config.overview ) {
|
|
|
|
|
|
|
|
// The current distance in pixels between the two touch points
|
|
|
|
var currentSpan = distanceBetween( {
|
|
|
|
x: event.touches[1].clientX,
|
|
|
|
y: event.touches[1].clientY
|
|
|
|
}, {
|
|
|
|
x: touch.startX,
|
|
|
|
y: touch.startY
|
|
|
|
} );
|
|
|
|
|
2012-10-21 03:05:14 +02:00
|
|
|
// If the span is larger than the desire amount we've got
|
2012-10-15 03:02:32 +02:00
|
|
|
// ourselves a pinch
|
|
|
|
if( Math.abs( touch.startSpan - currentSpan ) > touch.threshold ) {
|
|
|
|
touch.handled = true;
|
|
|
|
|
|
|
|
if( currentSpan < touch.startSpan ) {
|
|
|
|
activateOverview();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
deactivateOverview();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
}
|
|
|
|
// There was only one touch point, look for a swipe
|
|
|
|
else if( event.touches.length === 1 && touch.startCount !== 2 ) {
|
|
|
|
|
|
|
|
var deltaX = currentX - touch.startX,
|
|
|
|
deltaY = currentY - touch.startY;
|
|
|
|
|
|
|
|
if( deltaX > touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) {
|
|
|
|
touch.handled = true;
|
|
|
|
navigateLeft();
|
2012-10-21 03:05:14 +02:00
|
|
|
}
|
2012-10-15 03:02:32 +02:00
|
|
|
else if( deltaX < -touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) {
|
|
|
|
touch.handled = true;
|
|
|
|
navigateRight();
|
2012-10-21 03:05:14 +02:00
|
|
|
}
|
2012-10-15 03:02:32 +02:00
|
|
|
else if( deltaY > touch.threshold ) {
|
|
|
|
touch.handled = true;
|
|
|
|
navigateUp();
|
2012-10-21 03:05:14 +02:00
|
|
|
}
|
2012-10-15 03:02:32 +02:00
|
|
|
else if( deltaY < -touch.threshold ) {
|
|
|
|
touch.handled = true;
|
|
|
|
navigateDown();
|
|
|
|
}
|
|
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2012-10-21 03:05:14 +02:00
|
|
|
// There's a bug with swiping on some Android devices unless
|
2012-10-15 03:02:32 +02:00
|
|
|
// the default action is always prevented
|
|
|
|
else if( navigator.userAgent.match( /android/gi ) ) {
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-03-04 23:30:28 +01:00
|
|
|
* Handler for the 'touchend' event.
|
2012-10-15 03:02:32 +02:00
|
|
|
*/
|
2013-03-04 23:30:28 +01:00
|
|
|
function onTouchEnd( event ) {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
touch.handled = false;
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
}
|
|
|
|
|
2013-03-05 15:47:08 +01:00
|
|
|
/**
|
|
|
|
* Convert pointer down to touch start.
|
|
|
|
*/
|
|
|
|
function onPointerDown( event ) {
|
|
|
|
|
|
|
|
if( event.pointerType === event.MSPOINTER_TYPE_TOUCH ) {
|
|
|
|
event.touches = [{ clientX: event.clientX, clientY: event.clientY }];
|
2013-03-05 15:48:42 +01:00
|
|
|
onTouchStart( event );
|
2013-03-05 15:47:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert pointer move to touch move.
|
|
|
|
*/
|
|
|
|
function onPointerMove( event ) {
|
|
|
|
|
|
|
|
if( event.pointerType === event.MSPOINTER_TYPE_TOUCH ) {
|
|
|
|
event.touches = [{ clientX: event.clientX, clientY: event.clientY }];
|
2013-03-05 15:48:42 +01:00
|
|
|
onTouchMove( event );
|
2013-03-05 15:47:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert pointer up to touch end.
|
|
|
|
*/
|
|
|
|
function onPointerUp( event ) {
|
|
|
|
|
|
|
|
if( event.pointerType === event.MSPOINTER_TYPE_TOUCH ) {
|
|
|
|
event.touches = [{ clientX: event.clientX, clientY: event.clientY }];
|
2013-03-05 15:48:42 +01:00
|
|
|
onTouchEnd( event );
|
2013-03-05 15:47:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
/**
|
2012-10-21 03:05:14 +02:00
|
|
|
* Handles mouse wheel scrolling, throttled to avoid skipping
|
2012-10-20 18:51:12 +02:00
|
|
|
* multiple slides.
|
2012-10-15 03:02:32 +02:00
|
|
|
*/
|
2013-01-21 18:22:30 +01:00
|
|
|
function onDocumentMouseScroll( event ) {
|
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
clearTimeout( mouseWheelTimeout );
|
|
|
|
|
|
|
|
mouseWheelTimeout = setTimeout( function() {
|
|
|
|
var delta = event.detail || -event.wheelDelta;
|
|
|
|
if( delta > 0 ) {
|
|
|
|
navigateNext();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
navigatePrev();
|
|
|
|
}
|
|
|
|
}, 100 );
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
}
|
2012-10-20 18:51:12 +02:00
|
|
|
|
|
|
|
/**
|
2012-10-21 03:05:14 +02:00
|
|
|
* Clicking on the progress bar results in a navigation to the
|
2012-10-20 18:51:12 +02:00
|
|
|
* closest approximate horizontal slide using this equation:
|
|
|
|
*
|
|
|
|
* ( clickX / presentationWidth ) * numberOfSlides
|
|
|
|
*/
|
2013-02-03 08:00:17 +01:00
|
|
|
function onProgressClicked( event ) {
|
|
|
|
|
|
|
|
event.preventDefault();
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-11-10 19:59:51 +01:00
|
|
|
var slidesTotal = toArray( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).length;
|
2012-10-20 18:51:12 +02:00
|
|
|
var slideIndex = Math.floor( ( event.clientX / dom.wrapper.offsetWidth ) * slidesTotal );
|
|
|
|
|
|
|
|
slide( slideIndex );
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-20 18:51:12 +02:00
|
|
|
}
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2013-02-03 08:00:17 +01:00
|
|
|
/**
|
2013-02-03 17:28:01 +01:00
|
|
|
* Event handler for navigation control buttons.
|
2013-02-03 08:00:17 +01:00
|
|
|
*/
|
|
|
|
function onNavigateLeftClicked( event ) { event.preventDefault(); navigateLeft(); }
|
|
|
|
function onNavigateRightClicked( event ) { event.preventDefault(); navigateRight(); }
|
|
|
|
function onNavigateUpClicked( event ) { event.preventDefault(); navigateUp(); }
|
|
|
|
function onNavigateDownClicked( event ) { event.preventDefault(); navigateDown(); }
|
|
|
|
function onNavigatePrevClicked( event ) { event.preventDefault(); navigatePrev(); }
|
|
|
|
function onNavigateNextClicked( event ) { event.preventDefault(); navigateNext(); }
|
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
/**
|
|
|
|
* Handler for the window level 'hashchange' event.
|
|
|
|
*/
|
|
|
|
function onWindowHashChange( event ) {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
readURL();
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
}
|
|
|
|
|
2012-11-10 15:41:26 +01:00
|
|
|
/**
|
|
|
|
* Handler for the window level 'resize' event.
|
|
|
|
*/
|
|
|
|
function onWindowResize( event ) {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-11-10 15:41:26 +01:00
|
|
|
layout();
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-11-10 15:41:26 +01:00
|
|
|
}
|
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
/**
|
|
|
|
* Invoked when a slide is and we're in the overview.
|
|
|
|
*/
|
|
|
|
function onOverviewSlideClicked( event ) {
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-21 03:05:14 +02:00
|
|
|
// TODO There's a bug here where the event listeners are not
|
2012-10-15 03:02:32 +02:00
|
|
|
// removed after deactivating the overview.
|
2013-02-24 06:52:54 +01:00
|
|
|
if( eventsAreBound && isOverview() ) {
|
2012-10-15 03:02:32 +02:00
|
|
|
event.preventDefault();
|
|
|
|
|
2012-11-25 15:45:16 +01:00
|
|
|
var element = event.target;
|
2012-11-11 16:01:05 +01:00
|
|
|
|
2012-11-25 15:45:16 +01:00
|
|
|
while( element && !element.nodeName.match( /section/gi ) ) {
|
|
|
|
element = element.parentNode;
|
|
|
|
}
|
|
|
|
|
2013-02-26 18:08:04 +01:00
|
|
|
if( element && !element.classList.contains( 'disabled' ) ) {
|
|
|
|
|
|
|
|
deactivateOverview();
|
|
|
|
|
|
|
|
if( element.nodeName.match( /section/gi ) ) {
|
|
|
|
var h = parseInt( element.getAttribute( 'data-index-h' ), 10 ),
|
|
|
|
v = parseInt( element.getAttribute( 'data-index-v' ), 10 );
|
|
|
|
|
|
|
|
slide( h, v );
|
|
|
|
}
|
2012-11-25 15:45:16 +01:00
|
|
|
|
|
|
|
}
|
2012-10-15 03:02:32 +02:00
|
|
|
}
|
2013-01-21 18:22:30 +01:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
}
|
|
|
|
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
// --------------------------------------------------------------------//
|
|
|
|
// ------------------------------- API --------------------------------//
|
|
|
|
// --------------------------------------------------------------------//
|
|
|
|
|
|
|
|
|
2011-06-07 21:10:59 +02:00
|
|
|
return {
|
2011-12-05 03:07:33 +01:00
|
|
|
initialize: initialize,
|
2013-02-24 06:44:20 +01:00
|
|
|
configure: configure,
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
// Navigation methods
|
|
|
|
slide: slide,
|
|
|
|
left: navigateLeft,
|
|
|
|
right: navigateRight,
|
|
|
|
up: navigateUp,
|
|
|
|
down: navigateDown,
|
|
|
|
prev: navigatePrev,
|
|
|
|
next: navigateNext,
|
2012-10-23 21:56:56 +02:00
|
|
|
prevFragment: previousFragment,
|
|
|
|
nextFragment: nextFragment,
|
2012-10-15 03:02:32 +02:00
|
|
|
|
|
|
|
// Deprecated aliases
|
|
|
|
navigateTo: slide,
|
2011-06-07 21:10:59 +02:00
|
|
|
navigateLeft: navigateLeft,
|
|
|
|
navigateRight: navigateRight,
|
|
|
|
navigateUp: navigateUp,
|
2012-05-04 06:01:20 +02:00
|
|
|
navigateDown: navigateDown,
|
2012-06-12 00:28:17 +02:00
|
|
|
navigatePrev: navigatePrev,
|
|
|
|
navigateNext: navigateNext,
|
2012-10-15 03:02:32 +02:00
|
|
|
|
2013-01-21 18:22:30 +01:00
|
|
|
// Forces an update in slide layout
|
|
|
|
layout: layout,
|
|
|
|
|
2013-03-23 16:42:21 +01:00
|
|
|
// Returns an object with the available routes as booleans (left/right/top/bottom)
|
|
|
|
availableRoutes: availableRoutes,
|
|
|
|
|
2012-10-15 03:02:32 +02:00
|
|
|
// Toggles the overview mode on/off
|
2012-06-02 23:45:06 +02:00
|
|
|
toggleOverview: toggleOverview,
|
2012-05-04 06:01:20 +02:00
|
|
|
|
2013-01-18 17:01:09 +01:00
|
|
|
// Toggles the "black screen" mode on/off
|
|
|
|
togglePause: togglePause,
|
|
|
|
|
2013-02-10 01:11:54 +01:00
|
|
|
// State checks
|
|
|
|
isOverview: isOverview,
|
|
|
|
isPaused: isPaused,
|
|
|
|
|
2012-07-27 04:54:36 +02:00
|
|
|
// Adds or removes all internal event listeners (such as keyboard)
|
2012-06-03 00:37:18 +02:00
|
|
|
addEventListeners: addEventListeners,
|
|
|
|
removeEventListeners: removeEventListeners,
|
|
|
|
|
2012-08-21 04:13:00 +02:00
|
|
|
// Returns the indices of the current, or specified, slide
|
2012-10-15 03:02:32 +02:00
|
|
|
getIndices: getIndices,
|
2012-07-27 04:54:36 +02:00
|
|
|
|
2013-02-03 21:55:22 +01:00
|
|
|
// Returns the slide at the specified index, y is optional
|
|
|
|
getSlide: function( x, y ) {
|
|
|
|
var horizontalSlide = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR )[ x ];
|
|
|
|
var verticalSlides = horizontalSlide && horizontalSlide.querySelectorAll( 'section' );
|
|
|
|
|
|
|
|
if( typeof y !== 'undefined' ) {
|
|
|
|
return verticalSlides ? verticalSlides[ y ] : undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
return horizontalSlide;
|
|
|
|
},
|
|
|
|
|
2012-07-27 04:54:36 +02:00
|
|
|
// Returns the previous slide element, may be null
|
|
|
|
getPreviousSlide: function() {
|
2012-09-17 03:47:07 +02:00
|
|
|
return previousSlide;
|
2012-07-27 04:54:36 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// Returns the current slide element
|
|
|
|
getCurrentSlide: function() {
|
2012-09-17 03:47:07 +02:00
|
|
|
return currentSlide;
|
2012-07-27 04:54:36 +02:00
|
|
|
},
|
|
|
|
|
2013-02-03 02:05:09 +01:00
|
|
|
// Returns the current scale of the presentation content
|
|
|
|
getScale: function() {
|
|
|
|
return scale;
|
|
|
|
},
|
|
|
|
|
2013-03-09 01:05:58 +01:00
|
|
|
// Returns the current configuration object
|
|
|
|
getConfig: function() {
|
|
|
|
return config;
|
|
|
|
},
|
|
|
|
|
2013-04-05 20:45:17 +02:00
|
|
|
// Returns an index (1-based) of the current fragment
|
|
|
|
getCurrentFragmentIndex : function() {
|
2013-04-06 18:18:54 +02:00
|
|
|
if( currentSlide ) {
|
|
|
|
var visibleFragments = currentSlide.querySelectorAll( '.fragment.visible' );
|
|
|
|
|
2013-04-07 06:38:21 +02:00
|
|
|
if( visibleFragments.length ) {
|
2013-04-06 18:18:54 +02:00
|
|
|
return visibleFragments.length;
|
|
|
|
}
|
2013-04-05 20:45:17 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-07-31 07:35:16 +02:00
|
|
|
// Helper method, retrieves query string as a key/value hash
|
|
|
|
getQueryHash: function() {
|
|
|
|
var query = {};
|
|
|
|
|
|
|
|
location.search.replace( /[A-Z0-9]+?=(\w*)/gi, function(a) {
|
|
|
|
query[ a.split( '=' ).shift() ] = a.split( '=' ).pop();
|
|
|
|
} );
|
|
|
|
|
|
|
|
return query;
|
|
|
|
},
|
|
|
|
|
2013-02-14 00:00:53 +01:00
|
|
|
// Returns true if we're currently on the first slide
|
|
|
|
isFirstSlide: function() {
|
|
|
|
return document.querySelector( SLIDES_SELECTOR + '.past' ) == null ? true : false;
|
|
|
|
},
|
|
|
|
|
|
|
|
// Returns true if we're currently on the last slide
|
|
|
|
isLastSlide: function() {
|
|
|
|
if( currentSlide && currentSlide.classList.contains( '.stack' ) ) {
|
|
|
|
return currentSlide.querySelector( SLIDES_SELECTOR + '.future' ) == null ? true : false;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return document.querySelector( SLIDES_SELECTOR + '.future' ) == null ? true : false;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-05-04 06:01:20 +02:00
|
|
|
// Forward event binding to the reveal DOM element
|
|
|
|
addEventListener: function( type, listener, useCapture ) {
|
2012-08-04 03:49:29 +02:00
|
|
|
if( 'addEventListener' in window ) {
|
|
|
|
( dom.wrapper || document.querySelector( '.reveal' ) ).addEventListener( type, listener, useCapture );
|
|
|
|
}
|
2012-05-04 06:01:20 +02:00
|
|
|
},
|
|
|
|
removeEventListener: function( type, listener, useCapture ) {
|
2012-08-04 03:49:29 +02:00
|
|
|
if( 'addEventListener' in window ) {
|
|
|
|
( dom.wrapper || document.querySelector( '.reveal' ) ).removeEventListener( type, listener, useCapture );
|
|
|
|
}
|
2012-05-04 06:01:20 +02:00
|
|
|
}
|
2011-06-07 21:10:59 +02:00
|
|
|
};
|
2012-10-21 03:05:14 +02:00
|
|
|
|
2013-02-21 17:23:07 +01:00
|
|
|
})();
|