reveal.js 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190
  1. /*!
  2. * reveal.js
  3. * http://lab.hakim.se/reveal-js
  4. * MIT licensed
  5. *
  6. * Copyright (C) 2013 Hakim El Hattab, http://hakim.se
  7. */
  8. var Reveal = (function(){
  9. 'use strict';
  10. var SLIDES_SELECTOR = '.reveal .slides section',
  11. HORIZONTAL_SLIDES_SELECTOR = '.reveal .slides>section',
  12. VERTICAL_SLIDES_SELECTOR = '.reveal .slides>section.present>section',
  13. HOME_SLIDE_SELECTOR = '.reveal .slides>section:first-child',
  14. // Configurations defaults, can be overridden at initialization time
  15. config = {
  16. // The "normal" size of the presentation, aspect ratio will be preserved
  17. // when the presentation is scaled to fit different resolutions
  18. width: 960,
  19. height: 700,
  20. // Factor of the display size that should remain empty around the content
  21. margin: 0.1,
  22. // Bounds for smallest/largest possible scale to apply to content
  23. minScale: 0.2,
  24. maxScale: 1.0,
  25. // Display controls in the bottom right corner
  26. controls: true,
  27. // Display a presentation progress bar
  28. progress: true,
  29. // Push each slide change to the browser history
  30. history: false,
  31. // Enable keyboard shortcuts for navigation
  32. keyboard: true,
  33. // Enable the slide overview mode
  34. overview: true,
  35. // Vertical centring of slides
  36. center: true,
  37. // Enables touch navigation on devices with touch input
  38. touch: true,
  39. // Loop the presentation
  40. loop: false,
  41. // Change the presentation direction to be RTL
  42. rtl: false,
  43. // Turns fragments on and off globally
  44. fragments: true,
  45. // Number of milliseconds between automatically proceeding to the
  46. // next slide, disabled when set to 0, this value can be overwritten
  47. // by using a data-autoslide attribute on your slides
  48. autoSlide: 0,
  49. // Enable slide navigation via mouse wheel
  50. mouseWheel: false,
  51. // Apply a 3D roll to links on hover
  52. rollingLinks: true,
  53. // Theme (see /css/theme)
  54. theme: null,
  55. // Transition style
  56. transition: 'default', // default/cube/page/concave/zoom/linear/fade/none
  57. // Transition speed
  58. transitionSpeed: 'default', // default/fast/slow
  59. // Script dependencies to load
  60. dependencies: []
  61. },
  62. // The current auto-slide duration
  63. autoSlide = 0,
  64. // The horizontal and vertical index of the currently active slide
  65. indexh = 0,
  66. indexv = 0,
  67. // The previous and current slide HTML elements
  68. previousSlide,
  69. currentSlide,
  70. // Slides may hold a data-state attribute which we pick up and apply
  71. // as a class to the body. This list contains the combined state of
  72. // all current slides.
  73. state = [],
  74. // The current scale of the presentation (see width/height config)
  75. scale = 1,
  76. // Cached references to DOM elements
  77. dom = {},
  78. // Detect support for CSS 3D transforms
  79. supports3DTransforms = 'WebkitPerspective' in document.body.style ||
  80. 'MozPerspective' in document.body.style ||
  81. 'msPerspective' in document.body.style ||
  82. 'OPerspective' in document.body.style ||
  83. 'perspective' in document.body.style,
  84. // Detect support for CSS 2D transforms
  85. supports2DTransforms = 'WebkitTransform' in document.body.style ||
  86. 'MozTransform' in document.body.style ||
  87. 'msTransform' in document.body.style ||
  88. 'OTransform' in document.body.style ||
  89. 'transform' in document.body.style,
  90. // Throttles mouse wheel navigation
  91. mouseWheelTimeout = 0,
  92. // An interval used to automatically move on to the next slide
  93. autoSlideTimeout = 0,
  94. // Delays updates to the URL due to a Chrome thumbnailer bug
  95. writeURLTimeout = 0,
  96. // A delay used to activate the overview mode
  97. activateOverviewTimeout = 0,
  98. // A delay used to deactivate the overview mode
  99. deactivateOverviewTimeout = 0,
  100. // Flags if the interaction event listeners are bound
  101. eventsAreBound = false,
  102. // Holds information about the currently ongoing touch input
  103. touch = {
  104. startX: 0,
  105. startY: 0,
  106. startSpan: 0,
  107. startCount: 0,
  108. handled: false,
  109. threshold: 80
  110. };
  111. /**
  112. * Starts up the presentation if the client is capable.
  113. */
  114. function initialize( options ) {
  115. if( !supports2DTransforms && !supports3DTransforms ) {
  116. document.body.setAttribute( 'class', 'no-transforms' );
  117. // If the browser doesn't support core features we won't be
  118. // using JavaScript to control the presentation
  119. return;
  120. }
  121. // Force a layout when the whole page, incl fonts, has loaded
  122. window.addEventListener( 'load', layout, false );
  123. // Copy options over to our config object
  124. extend( config, options );
  125. // Hide the address bar in mobile browsers
  126. hideAddressBar();
  127. // Loads the dependencies and continues to #start() once done
  128. load();
  129. }
  130. /**
  131. * Finds and stores references to DOM elements which are
  132. * required by the presentation. If a required element is
  133. * not found, it is created.
  134. */
  135. function setupDOM() {
  136. // Cache references to key DOM elements
  137. dom.theme = document.querySelector( '#theme' );
  138. dom.wrapper = document.querySelector( '.reveal' );
  139. dom.slides = document.querySelector( '.reveal .slides' );
  140. // Progress bar
  141. if( !dom.wrapper.querySelector( '.progress' ) ) {
  142. var progressElement = document.createElement( 'div' );
  143. progressElement.classList.add( 'progress' );
  144. progressElement.innerHTML = '<span></span>';
  145. dom.wrapper.appendChild( progressElement );
  146. }
  147. // Arrow controls
  148. if( !dom.wrapper.querySelector( '.controls' ) ) {
  149. var controlsElement = document.createElement( 'aside' );
  150. controlsElement.classList.add( 'controls' );
  151. controlsElement.innerHTML = '<div class="navigate-left"></div>' +
  152. '<div class="navigate-right"></div>' +
  153. '<div class="navigate-up"></div>' +
  154. '<div class="navigate-down"></div>';
  155. dom.wrapper.appendChild( controlsElement );
  156. }
  157. // Presentation background element
  158. if( !dom.wrapper.querySelector( '.state-background' ) ) {
  159. var backgroundElement = document.createElement( 'div' );
  160. backgroundElement.classList.add( 'state-background' );
  161. dom.wrapper.appendChild( backgroundElement );
  162. }
  163. // Overlay graphic which is displayed during the paused mode
  164. if( !dom.wrapper.querySelector( '.pause-overlay' ) ) {
  165. var pausedElement = document.createElement( 'div' );
  166. pausedElement.classList.add( 'pause-overlay' );
  167. dom.wrapper.appendChild( pausedElement );
  168. }
  169. // Cache references to elements
  170. dom.progress = document.querySelector( '.reveal .progress' );
  171. dom.progressbar = document.querySelector( '.reveal .progress span' );
  172. if ( config.controls ) {
  173. dom.controls = document.querySelector( '.reveal .controls' );
  174. // There can be multiple instances of controls throughout the page
  175. dom.controlsLeft = toArray( document.querySelectorAll( '.navigate-left' ) );
  176. dom.controlsRight = toArray( document.querySelectorAll( '.navigate-right' ) );
  177. dom.controlsUp = toArray( document.querySelectorAll( '.navigate-up' ) );
  178. dom.controlsDown = toArray( document.querySelectorAll( '.navigate-down' ) );
  179. dom.controlsPrev = toArray( document.querySelectorAll( '.navigate-prev' ) );
  180. dom.controlsNext = toArray( document.querySelectorAll( '.navigate-next' ) );
  181. }
  182. }
  183. /**
  184. * Hides the address bar if we're on a mobile device.
  185. */
  186. function hideAddressBar() {
  187. if( /iphone|ipod|android/gi.test( navigator.userAgent ) && !/crios/gi.test( navigator.userAgent ) ) {
  188. // Events that should trigger the address bar to hide
  189. window.addEventListener( 'load', removeAddressBar, false );
  190. window.addEventListener( 'orientationchange', removeAddressBar, false );
  191. }
  192. }
  193. /**
  194. * Loads the dependencies of reveal.js. Dependencies are
  195. * defined via the configuration option 'dependencies'
  196. * and will be loaded prior to starting/binding reveal.js.
  197. * Some dependencies may have an 'async' flag, if so they
  198. * will load after reveal.js has been started up.
  199. */
  200. function load() {
  201. var scripts = [],
  202. scriptsAsync = [];
  203. for( var i = 0, len = config.dependencies.length; i < len; i++ ) {
  204. var s = config.dependencies[i];
  205. // Load if there's no condition or the condition is truthy
  206. if( !s.condition || s.condition() ) {
  207. if( s.async ) {
  208. scriptsAsync.push( s.src );
  209. }
  210. else {
  211. scripts.push( s.src );
  212. }
  213. // Extension may contain callback functions
  214. if( typeof s.callback === 'function' ) {
  215. head.ready( s.src.match( /([\w\d_\-]*)\.?js$|[^\\\/]*$/i )[0], s.callback );
  216. }
  217. }
  218. }
  219. // Called once synchronous scripts finish loading
  220. function proceed() {
  221. if( scriptsAsync.length ) {
  222. // Load asynchronous scripts
  223. head.js.apply( null, scriptsAsync );
  224. }
  225. start();
  226. }
  227. if( scripts.length ) {
  228. head.ready( proceed );
  229. // Load synchronous scripts
  230. head.js.apply( null, scripts );
  231. }
  232. else {
  233. proceed();
  234. }
  235. }
  236. /**
  237. * Starts up reveal.js by binding input events and navigating
  238. * to the current URL deeplink if there is one.
  239. */
  240. function start() {
  241. // Make sure we've got all the DOM elements we need
  242. setupDOM();
  243. // Updates the presentation to match the current configuration values
  244. configure();
  245. // Read the initial hash
  246. readURL();
  247. // Notify listeners that the presentation is ready but use a 1ms
  248. // timeout to ensure it's not fired synchronously after #initialize()
  249. setTimeout( function() {
  250. dispatchEvent( 'ready', {
  251. 'indexh': indexh,
  252. 'indexv': indexv,
  253. 'currentSlide': currentSlide
  254. } );
  255. }, 1 );
  256. }
  257. /**
  258. * Applies the configuration settings from the config
  259. * object. May be called multiple times.
  260. */
  261. function configure( options ) {
  262. dom.wrapper.classList.remove( config.transition );
  263. // New config options may be passed when this method
  264. // is invoked through the API after initialization
  265. if( typeof options === 'object' ) extend( config, options );
  266. // Force linear transition based on browser capabilities
  267. if( supports3DTransforms === false ) config.transition = 'linear';
  268. dom.wrapper.classList.add( config.transition );
  269. dom.wrapper.setAttribute( 'data-transition-speed', config.transitionSpeed );
  270. if( dom.controls ) {
  271. dom.controls.style.display = ( config.controls && dom.controls ) ? 'block' : 'none';
  272. }
  273. if( dom.progress ) {
  274. dom.progress.style.display = ( config.progress && dom.progress ) ? 'block' : 'none';
  275. }
  276. if( config.rtl ) {
  277. dom.wrapper.classList.add( 'rtl' );
  278. }
  279. else {
  280. dom.wrapper.classList.remove( 'rtl' );
  281. }
  282. if( config.center ) {
  283. dom.wrapper.classList.add( 'center' );
  284. }
  285. else {
  286. dom.wrapper.classList.remove( 'center' );
  287. }
  288. if( config.mouseWheel ) {
  289. document.addEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF
  290. document.addEventListener( 'mousewheel', onDocumentMouseScroll, false );
  291. }
  292. else {
  293. document.removeEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF
  294. document.removeEventListener( 'mousewheel', onDocumentMouseScroll, false );
  295. }
  296. // 3D links
  297. if( config.rollingLinks ) {
  298. enable3DLinks();
  299. }
  300. else {
  301. disable3DLinks();
  302. }
  303. // Load the theme in the config, if it's not already loaded
  304. if( config.theme && dom.theme ) {
  305. var themeURL = dom.theme.getAttribute( 'href' );
  306. var themeFinder = /[^\/]*?(?=\.css)/;
  307. var themeName = themeURL.match(themeFinder)[0];
  308. if( config.theme !== themeName ) {
  309. themeURL = themeURL.replace(themeFinder, config.theme);
  310. dom.theme.setAttribute( 'href', themeURL );
  311. }
  312. }
  313. sync();
  314. }
  315. /**
  316. * Binds all event listeners.
  317. */
  318. function addEventListeners() {
  319. eventsAreBound = true;
  320. window.addEventListener( 'hashchange', onWindowHashChange, false );
  321. window.addEventListener( 'resize', onWindowResize, false );
  322. if( config.touch ) {
  323. dom.wrapper.addEventListener( 'touchstart', onTouchStart, false );
  324. dom.wrapper.addEventListener( 'touchmove', onTouchMove, false );
  325. dom.wrapper.addEventListener( 'touchend', onTouchEnd, false );
  326. // Support pointer-style touch interaction as well
  327. if( window.navigator.msPointerEnabled ) {
  328. dom.wrapper.addEventListener( 'MSPointerDown', onPointerDown, false );
  329. dom.wrapper.addEventListener( 'MSPointerMove', onPointerMove, false );
  330. dom.wrapper.addEventListener( 'MSPointerUp', onPointerUp, false );
  331. }
  332. }
  333. if( config.keyboard ) {
  334. document.addEventListener( 'keydown', onDocumentKeyDown, false );
  335. }
  336. if ( config.progress && dom.progress ) {
  337. dom.progress.addEventListener( 'click', onProgressClicked, false );
  338. }
  339. if ( config.controls && dom.controls ) {
  340. [ 'touchstart', 'click' ].forEach( function( eventName ) {
  341. dom.controlsLeft.forEach( function( el ) { el.addEventListener( eventName, onNavigateLeftClicked, false ); } );
  342. dom.controlsRight.forEach( function( el ) { el.addEventListener( eventName, onNavigateRightClicked, false ); } );
  343. dom.controlsUp.forEach( function( el ) { el.addEventListener( eventName, onNavigateUpClicked, false ); } );
  344. dom.controlsDown.forEach( function( el ) { el.addEventListener( eventName, onNavigateDownClicked, false ); } );
  345. dom.controlsPrev.forEach( function( el ) { el.addEventListener( eventName, onNavigatePrevClicked, false ); } );
  346. dom.controlsNext.forEach( function( el ) { el.addEventListener( eventName, onNavigateNextClicked, false ); } );
  347. } );
  348. }
  349. }
  350. /**
  351. * Unbinds all event listeners.
  352. */
  353. function removeEventListeners() {
  354. eventsAreBound = false;
  355. document.removeEventListener( 'keydown', onDocumentKeyDown, false );
  356. window.removeEventListener( 'hashchange', onWindowHashChange, false );
  357. window.removeEventListener( 'resize', onWindowResize, false );
  358. dom.wrapper.removeEventListener( 'touchstart', onTouchStart, false );
  359. dom.wrapper.removeEventListener( 'touchmove', onTouchMove, false );
  360. dom.wrapper.removeEventListener( 'touchend', onTouchEnd, false );
  361. if( window.navigator.msPointerEnabled ) {
  362. dom.wrapper.removeEventListener( 'MSPointerDown', onPointerDown, false );
  363. dom.wrapper.removeEventListener( 'MSPointerMove', onPointerMove, false );
  364. dom.wrapper.removeEventListener( 'MSPointerUp', onPointerUp, false );
  365. }
  366. if ( config.progress && dom.progress ) {
  367. dom.progress.removeEventListener( 'click', onProgressClicked, false );
  368. }
  369. if ( config.controls && dom.controls ) {
  370. [ 'touchstart', 'click' ].forEach( function( eventName ) {
  371. dom.controlsLeft.forEach( function( el ) { el.removeEventListener( eventName, onNavigateLeftClicked, false ); } );
  372. dom.controlsRight.forEach( function( el ) { el.removeEventListener( eventName, onNavigateRightClicked, false ); } );
  373. dom.controlsUp.forEach( function( el ) { el.removeEventListener( eventName, onNavigateUpClicked, false ); } );
  374. dom.controlsDown.forEach( function( el ) { el.removeEventListener( eventName, onNavigateDownClicked, false ); } );
  375. dom.controlsPrev.forEach( function( el ) { el.removeEventListener( eventName, onNavigatePrevClicked, false ); } );
  376. dom.controlsNext.forEach( function( el ) { el.removeEventListener( eventName, onNavigateNextClicked, false ); } );
  377. } );
  378. }
  379. }
  380. /**
  381. * Extend object a with the properties of object b.
  382. * If there's a conflict, object b takes precedence.
  383. */
  384. function extend( a, b ) {
  385. for( var i in b ) {
  386. a[ i ] = b[ i ];
  387. }
  388. }
  389. /**
  390. * Converts the target object to an array.
  391. */
  392. function toArray( o ) {
  393. return Array.prototype.slice.call( o );
  394. }
  395. /**
  396. * Measures the distance in pixels between point a
  397. * and point b.
  398. *
  399. * @param {Object} a point with x/y properties
  400. * @param {Object} b point with x/y properties
  401. */
  402. function distanceBetween( a, b ) {
  403. var dx = a.x - b.x,
  404. dy = a.y - b.y;
  405. return Math.sqrt( dx*dx + dy*dy );
  406. }
  407. /**
  408. * Causes the address bar to hide on mobile devices,
  409. * more vertical space ftw.
  410. */
  411. function removeAddressBar() {
  412. if( window.orientation === 0 ) {
  413. document.documentElement.style.overflow = 'scroll';
  414. document.body.style.height = '120%';
  415. }
  416. else {
  417. document.documentElement.style.overflow = '';
  418. document.body.style.height = '100%';
  419. }
  420. setTimeout( function() {
  421. window.scrollTo( 0, 1 );
  422. }, 10 );
  423. }
  424. /**
  425. * Dispatches an event of the specified type from the
  426. * reveal DOM element.
  427. */
  428. function dispatchEvent( type, properties ) {
  429. var event = document.createEvent( "HTMLEvents", 1, 2 );
  430. event.initEvent( type, true, true );
  431. extend( event, properties );
  432. dom.wrapper.dispatchEvent( event );
  433. }
  434. /**
  435. * Wrap all links in 3D goodness.
  436. */
  437. function enable3DLinks() {
  438. if( supports3DTransforms && !( 'msPerspective' in document.body.style ) ) {
  439. var anchors = document.querySelectorAll( SLIDES_SELECTOR + ' a:not(.image)' );
  440. for( var i = 0, len = anchors.length; i < len; i++ ) {
  441. var anchor = anchors[i];
  442. if( anchor.textContent && !anchor.querySelector( '*' ) && ( !anchor.className || !anchor.classList.contains( anchor, 'roll' ) ) ) {
  443. var span = document.createElement('span');
  444. span.setAttribute('data-title', anchor.text);
  445. span.innerHTML = anchor.innerHTML;
  446. anchor.classList.add( 'roll' );
  447. anchor.innerHTML = '';
  448. anchor.appendChild(span);
  449. }
  450. }
  451. }
  452. }
  453. /**
  454. * Unwrap all 3D links.
  455. */
  456. function disable3DLinks() {
  457. var anchors = document.querySelectorAll( SLIDES_SELECTOR + ' a.roll' );
  458. for( var i = 0, len = anchors.length; i < len; i++ ) {
  459. var anchor = anchors[i];
  460. var span = anchor.querySelector( 'span' );
  461. if( span ) {
  462. anchor.classList.remove( 'roll' );
  463. anchor.innerHTML = span.innerHTML;
  464. }
  465. }
  466. }
  467. /**
  468. * Return a sorted fragments list, ordered by an increasing
  469. * "data-fragment-index" attribute.
  470. *
  471. * Fragments will be revealed in the order that they are returned by
  472. * this function, so you can use the index attributes to control the
  473. * order of fragment appearance.
  474. *
  475. * To maintain a sensible default fragment order, fragments are presumed
  476. * to be passed in document order. This function adds a "fragment-index"
  477. * attribute to each node if such an attribute is not already present,
  478. * and sets that attribute to an integer value which is the position of
  479. * the fragment within the fragments list.
  480. */
  481. function sortFragments( fragments ) {
  482. var a = toArray( fragments );
  483. a.forEach( function( el, idx ) {
  484. if( !el.hasAttribute( 'data-fragment-index' ) ) {
  485. el.setAttribute( 'data-fragment-index', idx );
  486. }
  487. } );
  488. a.sort( function( l, r ) {
  489. return l.getAttribute( 'data-fragment-index' ) - r.getAttribute( 'data-fragment-index');
  490. } );
  491. return a;
  492. }
  493. /**
  494. * Applies JavaScript-controlled layout rules to the
  495. * presentation.
  496. */
  497. function layout() {
  498. if( dom.wrapper ) {
  499. // Available space to scale within
  500. var availableWidth = dom.wrapper.offsetWidth,
  501. availableHeight = dom.wrapper.offsetHeight;
  502. // Reduce available space by margin
  503. availableWidth -= ( availableHeight * config.margin );
  504. availableHeight -= ( availableHeight * config.margin );
  505. // Dimensions of the content
  506. var slideWidth = config.width,
  507. slideHeight = config.height;
  508. // Slide width may be a percentage of available width
  509. if( typeof slideWidth === 'string' && /%$/.test( slideWidth ) ) {
  510. slideWidth = parseInt( slideWidth, 10 ) / 100 * availableWidth;
  511. }
  512. // Slide height may be a percentage of available height
  513. if( typeof slideHeight === 'string' && /%$/.test( slideHeight ) ) {
  514. slideHeight = parseInt( slideHeight, 10 ) / 100 * availableHeight;
  515. }
  516. dom.slides.style.width = slideWidth + 'px';
  517. dom.slides.style.height = slideHeight + 'px';
  518. // Determine scale of content to fit within available space
  519. scale = Math.min( availableWidth / slideWidth, availableHeight / slideHeight );
  520. // Respect max/min scale settings
  521. scale = Math.max( scale, config.minScale );
  522. scale = Math.min( scale, config.maxScale );
  523. // Prefer applying scale via zoom since Chrome blurs scaled content
  524. // with nested transforms
  525. if( typeof dom.slides.style.zoom !== 'undefined' && !navigator.userAgent.match( /(iphone|ipod|ipad|android)/gi ) ) {
  526. dom.slides.style.zoom = scale;
  527. }
  528. // Apply scale transform as a fallback
  529. else {
  530. var transform = 'translate(-50%, -50%) scale('+ scale +') translate(50%, 50%)';
  531. dom.slides.style.WebkitTransform = transform;
  532. dom.slides.style.MozTransform = transform;
  533. dom.slides.style.msTransform = transform;
  534. dom.slides.style.OTransform = transform;
  535. dom.slides.style.transform = transform;
  536. }
  537. // Select all slides, vertical and horizontal
  538. var slides = toArray( document.querySelectorAll( SLIDES_SELECTOR ) );
  539. for( var i = 0, len = slides.length; i < len; i++ ) {
  540. var slide = slides[ i ];
  541. // Don't bother updating invisible slides
  542. if( slide.style.display === 'none' ) {
  543. continue;
  544. }
  545. if( config.center ) {
  546. // Vertical stacks are not centred since their section
  547. // children will be
  548. if( slide.classList.contains( 'stack' ) ) {
  549. slide.style.top = 0;
  550. }
  551. else {
  552. slide.style.top = Math.max( - ( slide.offsetHeight / 2 ) - 20, -slideHeight / 2 ) + 'px';
  553. }
  554. }
  555. else {
  556. slide.style.top = '';
  557. }
  558. }
  559. updateProgress();
  560. }
  561. }
  562. /**
  563. * Stores the vertical index of a stack so that the same
  564. * vertical slide can be selected when navigating to and
  565. * from the stack.
  566. *
  567. * @param {HTMLElement} stack The vertical stack element
  568. * @param {int} v Index to memorize
  569. */
  570. function setPreviousVerticalIndex( stack, v ) {
  571. if( typeof stack === 'object' && typeof stack.setAttribute === 'function' ) {
  572. stack.setAttribute( 'data-previous-indexv', v || 0 );
  573. }
  574. }
  575. /**
  576. * Retrieves the vertical index which was stored using
  577. * #setPreviousVerticalIndex() or 0 if no previous index
  578. * exists.
  579. *
  580. * @param {HTMLElement} stack The vertical stack element
  581. */
  582. function getPreviousVerticalIndex( stack ) {
  583. if( typeof stack === 'object' && typeof stack.setAttribute === 'function' && stack.classList.contains( 'stack' ) ) {
  584. return parseInt( stack.getAttribute( 'data-previous-indexv' ) || 0, 10 );
  585. }
  586. return 0;
  587. }
  588. /**
  589. * Displays the overview of slides (quick nav) by
  590. * scaling down and arranging all slide elements.
  591. *
  592. * Experimental feature, might be dropped if perf
  593. * can't be improved.
  594. */
  595. function activateOverview() {
  596. // Only proceed if enabled in config
  597. if( config.overview ) {
  598. // Don't auto-slide while in overview mode
  599. cancelAutoSlide();
  600. var wasActive = dom.wrapper.classList.contains( 'overview' );
  601. dom.wrapper.classList.add( 'overview' );
  602. dom.wrapper.classList.remove( 'exit-overview' );
  603. clearTimeout( activateOverviewTimeout );
  604. clearTimeout( deactivateOverviewTimeout );
  605. // Not the pretties solution, but need to let the overview
  606. // class apply first so that slides are measured accurately
  607. // before we can position them
  608. activateOverviewTimeout = setTimeout( function(){
  609. var horizontalSlides = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR );
  610. for( var i = 0, len1 = horizontalSlides.length; i < len1; i++ ) {
  611. var hslide = horizontalSlides[i],
  612. htransform = 'translateZ(-2500px) translate(' + ( ( i - indexh ) * 105 ) + '%, 0%)';
  613. hslide.setAttribute( 'data-index-h', i );
  614. hslide.style.display = 'block';
  615. hslide.style.WebkitTransform = htransform;
  616. hslide.style.MozTransform = htransform;
  617. hslide.style.msTransform = htransform;
  618. hslide.style.OTransform = htransform;
  619. hslide.style.transform = htransform;
  620. if( hslide.classList.contains( 'stack' ) ) {
  621. var verticalSlides = hslide.querySelectorAll( 'section' );
  622. for( var j = 0, len2 = verticalSlides.length; j < len2; j++ ) {
  623. var verticalIndex = i === indexh ? indexv : getPreviousVerticalIndex( hslide );
  624. var vslide = verticalSlides[j],
  625. vtransform = 'translate(0%, ' + ( ( j - verticalIndex ) * 105 ) + '%)';
  626. vslide.setAttribute( 'data-index-h', i );
  627. vslide.setAttribute( 'data-index-v', j );
  628. vslide.style.display = 'block';
  629. vslide.style.WebkitTransform = vtransform;
  630. vslide.style.MozTransform = vtransform;
  631. vslide.style.msTransform = vtransform;
  632. vslide.style.OTransform = vtransform;
  633. vslide.style.transform = vtransform;
  634. // Navigate to this slide on click
  635. vslide.addEventListener( 'click', onOverviewSlideClicked, true );
  636. }
  637. }
  638. else {
  639. // Navigate to this slide on click
  640. hslide.addEventListener( 'click', onOverviewSlideClicked, true );
  641. }
  642. }
  643. layout();
  644. if( !wasActive ) {
  645. // Notify observers of the overview showing
  646. dispatchEvent( 'overviewshown', {
  647. 'indexh': indexh,
  648. 'indexv': indexv,
  649. 'currentSlide': currentSlide
  650. } );
  651. }
  652. }, 10 );
  653. }
  654. }
  655. /**
  656. * Exits the slide overview and enters the currently
  657. * active slide.
  658. */
  659. function deactivateOverview() {
  660. // Only proceed if enabled in config
  661. if( config.overview ) {
  662. clearTimeout( activateOverviewTimeout );
  663. clearTimeout( deactivateOverviewTimeout );
  664. dom.wrapper.classList.remove( 'overview' );
  665. // Temporarily add a class so that transitions can do different things
  666. // depending on whether they are exiting/entering overview, or just
  667. // moving from slide to slide
  668. dom.wrapper.classList.add( 'exit-overview' );
  669. deactivateOverviewTimeout = setTimeout( function () {
  670. dom.wrapper.classList.remove( 'exit-overview' );
  671. }, 10);
  672. // Select all slides
  673. var slides = toArray( document.querySelectorAll( SLIDES_SELECTOR ) );
  674. for( var i = 0, len = slides.length; i < len; i++ ) {
  675. var element = slides[i];
  676. element.style.display = '';
  677. // Resets all transforms to use the external styles
  678. element.style.WebkitTransform = '';
  679. element.style.MozTransform = '';
  680. element.style.msTransform = '';
  681. element.style.OTransform = '';
  682. element.style.transform = '';
  683. element.removeEventListener( 'click', onOverviewSlideClicked, true );
  684. }
  685. slide( indexh, indexv );
  686. cueAutoSlide();
  687. // Notify observers of the overview hiding
  688. dispatchEvent( 'overviewhidden', {
  689. 'indexh': indexh,
  690. 'indexv': indexv,
  691. 'currentSlide': currentSlide
  692. } );
  693. }
  694. }
  695. /**
  696. * Toggles the slide overview mode on and off.
  697. *
  698. * @param {Boolean} override Optional flag which overrides the
  699. * toggle logic and forcibly sets the desired state. True means
  700. * overview is open, false means it's closed.
  701. */
  702. function toggleOverview( override ) {
  703. if( typeof override === 'boolean' ) {
  704. override ? activateOverview() : deactivateOverview();
  705. }
  706. else {
  707. isOverview() ? deactivateOverview() : activateOverview();
  708. }
  709. }
  710. /**
  711. * Checks if the overview is currently active.
  712. *
  713. * @return {Boolean} true if the overview is active,
  714. * false otherwise
  715. */
  716. function isOverview() {
  717. return dom.wrapper.classList.contains( 'overview' );
  718. }
  719. /**
  720. * Handling the fullscreen functionality via the fullscreen API
  721. *
  722. * @see http://fullscreen.spec.whatwg.org/
  723. * @see https://developer.mozilla.org/en-US/docs/DOM/Using_fullscreen_mode
  724. */
  725. function enterFullscreen() {
  726. var element = document.body;
  727. // Check which implementation is available
  728. var requestMethod = element.requestFullScreen ||
  729. element.webkitRequestFullscreen ||
  730. element.webkitRequestFullScreen ||
  731. element.mozRequestFullScreen ||
  732. element.msRequestFullScreen;
  733. if( requestMethod ) {
  734. requestMethod.apply( element );
  735. }
  736. }
  737. /**
  738. * Enters the paused mode which fades everything on screen to
  739. * black.
  740. */
  741. function pause() {
  742. var wasPaused = dom.wrapper.classList.contains( 'paused' );
  743. cancelAutoSlide();
  744. dom.wrapper.classList.add( 'paused' );
  745. if( wasPaused === false ) {
  746. dispatchEvent( 'paused' );
  747. }
  748. }
  749. /**
  750. * Exits from the paused mode.
  751. */
  752. function resume() {
  753. var wasPaused = dom.wrapper.classList.contains( 'paused' );
  754. dom.wrapper.classList.remove( 'paused' );
  755. cueAutoSlide();
  756. if( wasPaused ) {
  757. dispatchEvent( 'resumed' );
  758. }
  759. }
  760. /**
  761. * Toggles the paused mode on and off.
  762. */
  763. function togglePause() {
  764. if( isPaused() ) {
  765. resume();
  766. }
  767. else {
  768. pause();
  769. }
  770. }
  771. /**
  772. * Checks if we are currently in the paused mode.
  773. */
  774. function isPaused() {
  775. return dom.wrapper.classList.contains( 'paused' );
  776. }
  777. /**
  778. * Steps from the current point in the presentation to the
  779. * slide which matches the specified horizontal and vertical
  780. * indices.
  781. *
  782. * @param {int} h Horizontal index of the target slide
  783. * @param {int} v Vertical index of the target slide
  784. * @param {int} f Optional index of a fragment within the
  785. * target slide to activate
  786. * @param {int} o Optional origin for use in multimaster environments
  787. */
  788. function slide( h, v, f, o ) {
  789. // Remember where we were at before
  790. previousSlide = currentSlide;
  791. // Query all horizontal slides in the deck
  792. var horizontalSlides = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR );
  793. // If no vertical index is specified and the upcoming slide is a
  794. // stack, resume at its previous vertical index
  795. if( v === undefined ) {
  796. v = getPreviousVerticalIndex( horizontalSlides[ h ] );
  797. }
  798. // If we were on a vertical stack, remember what vertical index
  799. // it was on so we can resume at the same position when returning
  800. if( previousSlide && previousSlide.parentNode && previousSlide.parentNode.classList.contains( 'stack' ) ) {
  801. setPreviousVerticalIndex( previousSlide.parentNode, indexv );
  802. }
  803. // Remember the state before this slide
  804. var stateBefore = state.concat();
  805. // Reset the state array
  806. state.length = 0;
  807. var indexhBefore = indexh,
  808. indexvBefore = indexv;
  809. // Activate and transition to the new slide
  810. indexh = updateSlides( HORIZONTAL_SLIDES_SELECTOR, h === undefined ? indexh : h );
  811. indexv = updateSlides( VERTICAL_SLIDES_SELECTOR, v === undefined ? indexv : v );
  812. layout();
  813. // Apply the new state
  814. stateLoop: for( var i = 0, len = state.length; i < len; i++ ) {
  815. // Check if this state existed on the previous slide. If it
  816. // did, we will avoid adding it repeatedly
  817. for( var j = 0; j < stateBefore.length; j++ ) {
  818. if( stateBefore[j] === state[i] ) {
  819. stateBefore.splice( j, 1 );
  820. continue stateLoop;
  821. }
  822. }
  823. document.documentElement.classList.add( state[i] );
  824. // Dispatch custom event matching the state's name
  825. dispatchEvent( state[i] );
  826. }
  827. // Clean up the remains of the previous state
  828. while( stateBefore.length ) {
  829. document.documentElement.classList.remove( stateBefore.pop() );
  830. }
  831. // If the overview is active, re-activate it to update positions
  832. if( isOverview() ) {
  833. activateOverview();
  834. }
  835. // Update the URL hash after a delay since updating it mid-transition
  836. // is likely to cause visual lag
  837. writeURL( 1500 );
  838. // Find the current horizontal slide and any possible vertical slides
  839. // within it
  840. var currentHorizontalSlide = horizontalSlides[ indexh ],
  841. currentVerticalSlides = currentHorizontalSlide.querySelectorAll( 'section' );
  842. // Store references to the previous and current slides
  843. currentSlide = currentVerticalSlides[ indexv ] || currentHorizontalSlide;
  844. // Show fragment, if specified
  845. if( typeof f !== 'undefined' ) {
  846. var fragments = sortFragments( currentSlide.querySelectorAll( '.fragment' ) );
  847. toArray( fragments ).forEach( function( fragment, indexf ) {
  848. if( indexf < f ) {
  849. fragment.classList.add( 'visible' );
  850. }
  851. else {
  852. fragment.classList.remove( 'visible' );
  853. }
  854. } );
  855. }
  856. // Dispatch an event if the slide changed
  857. if( indexh !== indexhBefore || indexv !== indexvBefore ) {
  858. dispatchEvent( 'slidechanged', {
  859. 'indexh': indexh,
  860. 'indexv': indexv,
  861. 'previousSlide': previousSlide,
  862. 'currentSlide': currentSlide,
  863. 'origin': o
  864. } );
  865. }
  866. else {
  867. // Ensure that the previous slide is never the same as the current
  868. previousSlide = null;
  869. }
  870. // Solves an edge case where the previous slide maintains the
  871. // 'present' class when navigating between adjacent vertical
  872. // stacks
  873. if( previousSlide ) {
  874. previousSlide.classList.remove( 'present' );
  875. // Reset all slides upon navigate to home
  876. // Issue: #285
  877. if ( document.querySelector( HOME_SLIDE_SELECTOR ).classList.contains( 'present' ) ) {
  878. // Launch async task
  879. setTimeout( function () {
  880. var slides = toArray( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.stack') ), i;
  881. for( i in slides ) {
  882. if( slides[i] ) {
  883. // Reset stack
  884. setPreviousVerticalIndex( slides[i], 0 );
  885. }
  886. }
  887. }, 0 );
  888. }
  889. }
  890. // Handle embedded content
  891. stopEmbeddedContent( previousSlide );
  892. startEmbeddedContent( currentSlide );
  893. updateControls();
  894. updateProgress();
  895. }
  896. /**
  897. * Syncs the presentation with the current DOM. Useful
  898. * when new slides or control elements are added or when
  899. * the configuration has changed.
  900. */
  901. function sync() {
  902. // Subscribe to input
  903. removeEventListeners();
  904. addEventListeners();
  905. // Force a layout to make sure the current config is accounted for
  906. layout();
  907. // Reflect the current autoSlide value
  908. autoSlide = config.autoSlide;
  909. // Start auto-sliding if it's enabled
  910. cueAutoSlide();
  911. updateControls();
  912. updateProgress();
  913. }
  914. /**
  915. * Updates one dimension of slides by showing the slide
  916. * with the specified index.
  917. *
  918. * @param {String} selector A CSS selector that will fetch
  919. * the group of slides we are working with
  920. * @param {Number} index The index of the slide that should be
  921. * shown
  922. *
  923. * @return {Number} The index of the slide that is now shown,
  924. * might differ from the passed in index if it was out of
  925. * bounds.
  926. */
  927. function updateSlides( selector, index ) {
  928. // Select all slides and convert the NodeList result to
  929. // an array
  930. var slides = toArray( document.querySelectorAll( selector ) ),
  931. slidesLength = slides.length;
  932. if( slidesLength ) {
  933. // Should the index loop?
  934. if( config.loop ) {
  935. index %= slidesLength;
  936. if( index < 0 ) {
  937. index = slidesLength + index;
  938. }
  939. }
  940. // Enforce max and minimum index bounds
  941. index = Math.max( Math.min( index, slidesLength - 1 ), 0 );
  942. for( var i = 0; i < slidesLength; i++ ) {
  943. var element = slides[i];
  944. // Optimization; hide all slides that are three or more steps
  945. // away from the present slide
  946. if( isOverview() === false ) {
  947. // The distance loops so that it measures 1 between the first
  948. // and last slides
  949. var distance = Math.abs( ( index - i ) % ( slidesLength - 3 ) ) || 0;
  950. element.style.display = distance > 3 ? 'none' : 'block';
  951. }
  952. slides[i].classList.remove( 'past' );
  953. slides[i].classList.remove( 'present' );
  954. slides[i].classList.remove( 'future' );
  955. if( i < index ) {
  956. // Any element previous to index is given the 'past' class
  957. slides[i].classList.add( 'past' );
  958. }
  959. else if( i > index ) {
  960. // Any element subsequent to index is given the 'future' class
  961. slides[i].classList.add( 'future' );
  962. }
  963. // If this element contains vertical slides
  964. if( element.querySelector( 'section' ) ) {
  965. slides[i].classList.add( 'stack' );
  966. }
  967. }
  968. // Mark the current slide as present
  969. slides[index].classList.add( 'present' );
  970. // If this slide has a state associated with it, add it
  971. // onto the current state of the deck
  972. var slideState = slides[index].getAttribute( 'data-state' );
  973. if( slideState ) {
  974. state = state.concat( slideState.split( ' ' ) );
  975. }
  976. // If this slide has a data-autoslide attribtue associated use this as
  977. // autoSlide value otherwise use the global configured time
  978. var slideAutoSlide = slides[index].getAttribute( 'data-autoslide' );
  979. if( slideAutoSlide ) {
  980. autoSlide = parseInt( slideAutoSlide, 10 );
  981. }
  982. else {
  983. autoSlide = config.autoSlide;
  984. }
  985. }
  986. else {
  987. // Since there are no slides we can't be anywhere beyond the
  988. // zeroth index
  989. index = 0;
  990. }
  991. return index;
  992. }
  993. /**
  994. * Updates the progress bar to reflect the current slide.
  995. */
  996. function updateProgress() {
  997. // Update progress if enabled
  998. if( config.progress && dom.progress ) {
  999. var horizontalSlides = toArray( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );
  1000. // The number of past and total slides
  1001. var totalCount = document.querySelectorAll( SLIDES_SELECTOR + ':not(.stack)' ).length;
  1002. var pastCount = 0;
  1003. // Step through all slides and count the past ones
  1004. mainLoop: for( var i = 0; i < horizontalSlides.length; i++ ) {
  1005. var horizontalSlide = horizontalSlides[i];
  1006. var verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );
  1007. for( var j = 0; j < verticalSlides.length; j++ ) {
  1008. // Stop as soon as we arrive at the present
  1009. if( verticalSlides[j].classList.contains( 'present' ) ) {
  1010. break mainLoop;
  1011. }
  1012. pastCount++;
  1013. }
  1014. // Stop as soon as we arrive at the present
  1015. if( horizontalSlide.classList.contains( 'present' ) ) {
  1016. break;
  1017. }
  1018. // Don't count the wrapping section for vertical slides
  1019. if( horizontalSlide.classList.contains( 'stack' ) === false ) {
  1020. pastCount++;
  1021. }
  1022. }
  1023. dom.progressbar.style.width = ( pastCount / ( totalCount - 1 ) ) * window.innerWidth + 'px';
  1024. }
  1025. }
  1026. /**
  1027. * Updates the state of all control/navigation arrows.
  1028. */
  1029. function updateControls() {
  1030. if ( config.controls && dom.controls ) {
  1031. var routes = availableRoutes();
  1032. var fragments = availableFragments();
  1033. // Remove the 'enabled' class from all directions
  1034. dom.controlsLeft.concat( dom.controlsRight )
  1035. .concat( dom.controlsUp )
  1036. .concat( dom.controlsDown )
  1037. .concat( dom.controlsPrev )
  1038. .concat( dom.controlsNext ).forEach( function( node ) {
  1039. node.classList.remove( 'enabled' );
  1040. node.classList.remove( 'fragmented' );
  1041. } );
  1042. // Add the 'enabled' class to the available routes
  1043. if( routes.left ) dom.controlsLeft.forEach( function( el ) { el.classList.add( 'enabled' ); } );
  1044. if( routes.right ) dom.controlsRight.forEach( function( el ) { el.classList.add( 'enabled' ); } );
  1045. if( routes.up ) dom.controlsUp.forEach( function( el ) { el.classList.add( 'enabled' ); } );
  1046. if( routes.down ) dom.controlsDown.forEach( function( el ) { el.classList.add( 'enabled' ); } );
  1047. // Prev/next buttons
  1048. if( routes.left || routes.up ) dom.controlsPrev.forEach( function( el ) { el.classList.add( 'enabled' ); } );
  1049. if( routes.right || routes.down ) dom.controlsNext.forEach( function( el ) { el.classList.add( 'enabled' ); } );
  1050. // Highlight fragment directions
  1051. if( currentSlide ) {
  1052. var isVertical = !!currentSlide.parentNode.nodeName.match( /section/gi );
  1053. // Always apply fragment decorator to prev/next buttons
  1054. if( fragments.prev ) dom.controlsPrev.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );
  1055. if( fragments.next ) dom.controlsNext.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );
  1056. // Apply fragment decorators to directional buttons based on
  1057. // what slide axis they are in
  1058. if( isVertical ) {
  1059. if( fragments.prev ) dom.controlsUp.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );
  1060. if( fragments.next ) dom.controlsDown.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );
  1061. }
  1062. else {
  1063. if( fragments.prev ) dom.controlsLeft.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );
  1064. if( fragments.next ) dom.controlsRight.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );
  1065. }
  1066. }
  1067. }
  1068. }
  1069. /**
  1070. * Determine what available routes there are for navigation.
  1071. *
  1072. * @return {Object} containing four booleans: left/right/up/down
  1073. */
  1074. function availableRoutes() {
  1075. var horizontalSlides = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ),
  1076. verticalSlides = document.querySelectorAll( VERTICAL_SLIDES_SELECTOR );
  1077. return {
  1078. left: indexh > 0 || config.loop,
  1079. right: indexh < horizontalSlides.length - 1 || config.loop,
  1080. up: indexv > 0,
  1081. down: indexv < verticalSlides.length - 1
  1082. };
  1083. }
  1084. /**
  1085. * Returns an object describing the available fragment
  1086. * directions.
  1087. *
  1088. * @return {Object} two boolean properties: prev/next
  1089. */
  1090. function availableFragments() {
  1091. if( currentSlide && config.fragments ) {
  1092. var fragments = currentSlide.querySelectorAll( '.fragment' );
  1093. var hiddenFragments = currentSlide.querySelectorAll( '.fragment:not(.visible)' );
  1094. return {
  1095. prev: fragments.length - hiddenFragments.length > 0,
  1096. next: !!hiddenFragments.length
  1097. };
  1098. }
  1099. else {
  1100. return { prev: false, next: false };
  1101. }
  1102. }
  1103. /**
  1104. * Start playback of any embedded content inside of
  1105. * the targeted slide.
  1106. */
  1107. function startEmbeddedContent( slide ) {
  1108. if( slide ) {
  1109. // HTML5 media elements
  1110. toArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {
  1111. if( !el.hasAttribute( 'data-ignore' ) ) {
  1112. el.play();
  1113. }
  1114. } );
  1115. // YouTube embeds
  1116. toArray( slide.querySelectorAll( 'iframe[src*="youtube.com/embed/"]' ) ).forEach( function( el ) {
  1117. if( !el.hasAttribute( 'data-ignore' ) ) {
  1118. el.contentWindow.postMessage('{"event":"command","func":"playVideo","args":""}', '*');
  1119. }
  1120. });
  1121. }
  1122. }
  1123. /**
  1124. * Stop playback of any embedded content inside of
  1125. * the targeted slide.
  1126. */
  1127. function stopEmbeddedContent( slide ) {
  1128. if( slide ) {
  1129. // HTML5 media elements
  1130. toArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {
  1131. if( !el.hasAttribute( 'data-ignore' ) ) {
  1132. el.pause();
  1133. }
  1134. } );
  1135. // YouTube embeds
  1136. toArray( slide.querySelectorAll( 'iframe[src*="youtube.com/embed/"]' ) ).forEach( function( el ) {
  1137. if( !el.hasAttribute( 'data-ignore' ) && typeof el.contentWindow.postMessage === 'function' ) {
  1138. el.contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}', '*');
  1139. }
  1140. });
  1141. }
  1142. }
  1143. /**
  1144. * Reads the current URL (hash) and navigates accordingly.
  1145. */
  1146. function readURL() {
  1147. var hash = window.location.hash;
  1148. // Attempt to parse the hash as either an index or name
  1149. var bits = hash.slice( 2 ).split( '/' ),
  1150. name = hash.replace( /#|\//gi, '' );
  1151. // If the first bit is invalid and there is a name we can
  1152. // assume that this is a named link
  1153. if( isNaN( parseInt( bits[0], 10 ) ) && name.length ) {
  1154. // Find the slide with the specified name
  1155. var element = document.querySelector( '#' + name );
  1156. if( element ) {
  1157. // Find the position of the named slide and navigate to it
  1158. var indices = Reveal.getIndices( element );
  1159. slide( indices.h, indices.v );
  1160. }
  1161. // If the slide doesn't exist, navigate to the current slide
  1162. else {
  1163. slide( indexh, indexv );
  1164. }
  1165. }
  1166. else {
  1167. // Read the index components of the hash
  1168. var h = parseInt( bits[0], 10 ) || 0,
  1169. v = parseInt( bits[1], 10 ) || 0;
  1170. slide( h, v );
  1171. }
  1172. }
  1173. /**
  1174. * Updates the page URL (hash) to reflect the current
  1175. * state.
  1176. *
  1177. * @param {Number} delay The time in ms to wait before
  1178. * writing the hash
  1179. */
  1180. function writeURL( delay ) {
  1181. if( config.history ) {
  1182. // Make sure there's never more than one timeout running
  1183. clearTimeout( writeURLTimeout );
  1184. // If a delay is specified, timeout this call
  1185. if( typeof delay === 'number' ) {
  1186. writeURLTimeout = setTimeout( writeURL, delay );
  1187. }
  1188. else {
  1189. var url = '/';
  1190. // If the current slide has an ID, use that as a named link
  1191. if( currentSlide && typeof currentSlide.getAttribute( 'id' ) === 'string' ) {
  1192. url = '/' + currentSlide.getAttribute( 'id' );
  1193. }
  1194. // Otherwise use the /h/v index
  1195. else {
  1196. if( indexh > 0 || indexv > 0 ) url += indexh;
  1197. if( indexv > 0 ) url += '/' + indexv;
  1198. }
  1199. window.location.hash = url;
  1200. }
  1201. }
  1202. }
  1203. /**
  1204. * Retrieves the h/v location of the current, or specified,
  1205. * slide.
  1206. *
  1207. * @param {HTMLElement} slide If specified, the returned
  1208. * index will be for this slide rather than the currently
  1209. * active one
  1210. *
  1211. * @return {Object} { h: <int>, v: <int>, f: <int> }
  1212. */
  1213. function getIndices( slide ) {
  1214. // By default, return the current indices
  1215. var h = indexh,
  1216. v = indexv,
  1217. f;
  1218. // If a slide is specified, return the indices of that slide
  1219. if( slide ) {
  1220. var isVertical = !!slide.parentNode.nodeName.match( /section/gi );
  1221. var slideh = isVertical ? slide.parentNode : slide;
  1222. // Select all horizontal slides
  1223. var horizontalSlides = toArray( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );
  1224. // Now that we know which the horizontal slide is, get its index
  1225. h = Math.max( horizontalSlides.indexOf( slideh ), 0 );
  1226. // If this is a vertical slide, grab the vertical index
  1227. if( isVertical ) {
  1228. v = Math.max( toArray( slide.parentNode.querySelectorAll( 'section' ) ).indexOf( slide ), 0 );
  1229. }
  1230. }
  1231. if( !slide && currentSlide ) {
  1232. var visibleFragments = currentSlide.querySelectorAll( '.fragment.visible' );
  1233. if( visibleFragments.length ) {
  1234. f = visibleFragments.length;
  1235. }
  1236. }
  1237. return { h: h, v: v, f: f };
  1238. }
  1239. /**
  1240. * Navigate to the next slide fragment.
  1241. *
  1242. * @return {Boolean} true if there was a next fragment,
  1243. * false otherwise
  1244. */
  1245. function nextFragment() {
  1246. if( currentSlide && config.fragments ) {
  1247. var fragments = sortFragments( currentSlide.querySelectorAll( '.fragment:not(.visible)' ) );
  1248. if( fragments.length ) {
  1249. fragments[0].classList.add( 'visible' );
  1250. // Notify subscribers of the change
  1251. dispatchEvent( 'fragmentshown', { fragment: fragments[0] } );
  1252. updateControls();
  1253. return true;
  1254. }
  1255. }
  1256. return false;
  1257. }
  1258. /**
  1259. * Navigate to the previous slide fragment.
  1260. *
  1261. * @return {Boolean} true if there was a previous fragment,
  1262. * false otherwise
  1263. */
  1264. function previousFragment() {
  1265. if( currentSlide && config.fragments ) {
  1266. var fragments = sortFragments( currentSlide.querySelectorAll( '.fragment.visible' ) );
  1267. if( fragments.length ) {
  1268. fragments[ fragments.length - 1 ].classList.remove( 'visible' );
  1269. // Notify subscribers of the change
  1270. dispatchEvent( 'fragmenthidden', { fragment: fragments[ fragments.length - 1 ] } );
  1271. updateControls();
  1272. return true;
  1273. }
  1274. }
  1275. return false;
  1276. }
  1277. /**
  1278. * Cues a new automated slide if enabled in the config.
  1279. */
  1280. function cueAutoSlide() {
  1281. clearTimeout( autoSlideTimeout );
  1282. // Cue the next auto-slide if enabled
  1283. if( autoSlide && !isPaused() && !isOverview() ) {
  1284. autoSlideTimeout = setTimeout( navigateNext, autoSlide );
  1285. }
  1286. }
  1287. /**
  1288. * Cancels any ongoing request to auto-slide.
  1289. */
  1290. function cancelAutoSlide() {
  1291. clearTimeout( autoSlideTimeout );
  1292. }
  1293. function navigateLeft() {
  1294. // Prioritize hiding fragments
  1295. if( ( isOverview() || previousFragment() === false ) && availableRoutes().left ) {
  1296. slide( indexh - 1 );
  1297. }
  1298. }
  1299. function navigateRight() {
  1300. // Prioritize revealing fragments
  1301. if( ( isOverview() || nextFragment() === false ) && availableRoutes().right ) {
  1302. slide( indexh + 1 );
  1303. }
  1304. }
  1305. function navigateUp() {
  1306. // Prioritize hiding fragments
  1307. if( ( isOverview() || previousFragment() === false ) && availableRoutes().up ) {
  1308. slide( indexh, indexv - 1 );
  1309. }
  1310. }
  1311. function navigateDown() {
  1312. // Prioritize revealing fragments
  1313. if( ( isOverview() || nextFragment() === false ) && availableRoutes().down ) {
  1314. slide( indexh, indexv + 1 );
  1315. }
  1316. }
  1317. /**
  1318. * Navigates backwards, prioritized in the following order:
  1319. * 1) Previous fragment
  1320. * 2) Previous vertical slide
  1321. * 3) Previous horizontal slide
  1322. */
  1323. function navigatePrev() {
  1324. // Prioritize revealing fragments
  1325. if( previousFragment() === false ) {
  1326. if( availableRoutes().up ) {
  1327. navigateUp();
  1328. }
  1329. else {
  1330. // Fetch the previous horizontal slide, if there is one
  1331. var previousSlide = document.querySelector( HORIZONTAL_SLIDES_SELECTOR + '.past:nth-child(' + indexh + ')' );
  1332. if( previousSlide ) {
  1333. indexv = ( previousSlide.querySelectorAll( 'section' ).length + 1 ) || undefined;
  1334. indexh --;
  1335. slide( indexh, indexv );
  1336. }
  1337. }
  1338. }
  1339. }
  1340. /**
  1341. * Same as #navigatePrev() but navigates forwards.
  1342. */
  1343. function navigateNext() {
  1344. // Prioritize revealing fragments
  1345. if( nextFragment() === false ) {
  1346. availableRoutes().down ? navigateDown() : navigateRight();
  1347. }
  1348. // If auto-sliding is enabled we need to cue up
  1349. // another timeout
  1350. cueAutoSlide();
  1351. }
  1352. // --------------------------------------------------------------------//
  1353. // ----------------------------- EVENTS -------------------------------//
  1354. // --------------------------------------------------------------------//
  1355. /**
  1356. * Handler for the document level 'keydown' event.
  1357. *
  1358. * @param {Object} event
  1359. */
  1360. function onDocumentKeyDown( event ) {
  1361. // Check if there's a focused element that could be using
  1362. // the keyboard
  1363. var activeElement = document.activeElement;
  1364. var hasFocus = !!( document.activeElement && ( document.activeElement.type || document.activeElement.href || document.activeElement.contentEditable !== 'inherit' ) );
  1365. // Disregard the event if there's a focused element or a
  1366. // keyboard modifier key is present
  1367. if( hasFocus || (event.shiftKey && event.keyCode !== 32) || event.altKey || event.ctrlKey || event.metaKey ) return;
  1368. var triggered = true;
  1369. // while paused only allow "unpausing" keyboard events (b and .)
  1370. if( isPaused() && [66,190,191].indexOf( event.keyCode ) === -1 ) {
  1371. return false;
  1372. }
  1373. switch( event.keyCode ) {
  1374. // p, page up
  1375. case 80: case 33: navigatePrev(); break;
  1376. // n, page down
  1377. case 78: case 34: navigateNext(); break;
  1378. // h, left
  1379. case 72: case 37: navigateLeft(); break;
  1380. // l, right
  1381. case 76: case 39: navigateRight(); break;
  1382. // k, up
  1383. case 75: case 38: navigateUp(); break;
  1384. // j, down
  1385. case 74: case 40: navigateDown(); break;
  1386. // home
  1387. case 36: slide( 0 ); break;
  1388. // end
  1389. case 35: slide( Number.MAX_VALUE ); break;
  1390. // space
  1391. case 32: isOverview() ? deactivateOverview() : event.shiftKey ? navigatePrev() : navigateNext(); break;
  1392. // return
  1393. case 13: isOverview() ? deactivateOverview() : triggered = false; break;
  1394. // b, period, Logitech presenter tools "black screen" button
  1395. case 66: case 190: case 191: togglePause(); break;
  1396. // f
  1397. case 70: enterFullscreen(); break;
  1398. default:
  1399. triggered = false;
  1400. }
  1401. // If the input resulted in a triggered action we should prevent
  1402. // the browsers default behavior
  1403. if( triggered ) {
  1404. event.preventDefault();
  1405. }
  1406. else if ( event.keyCode === 27 && supports3DTransforms ) {
  1407. toggleOverview();
  1408. event.preventDefault();
  1409. }
  1410. // If auto-sliding is enabled we need to cue up
  1411. // another timeout
  1412. cueAutoSlide();
  1413. }
  1414. /**
  1415. * Handler for the 'touchstart' event, enables support for
  1416. * swipe and pinch gestures.
  1417. */
  1418. function onTouchStart( event ) {
  1419. touch.startX = event.touches[0].clientX;
  1420. touch.startY = event.touches[0].clientY;
  1421. touch.startCount = event.touches.length;
  1422. // If there's two touches we need to memorize the distance
  1423. // between those two points to detect pinching
  1424. if( event.touches.length === 2 && config.overview ) {
  1425. touch.startSpan = distanceBetween( {
  1426. x: event.touches[1].clientX,
  1427. y: event.touches[1].clientY
  1428. }, {
  1429. x: touch.startX,
  1430. y: touch.startY
  1431. } );
  1432. }
  1433. }
  1434. /**
  1435. * Handler for the 'touchmove' event.
  1436. */
  1437. function onTouchMove( event ) {
  1438. // Each touch should only trigger one action
  1439. if( !touch.handled ) {
  1440. var currentX = event.touches[0].clientX;
  1441. var currentY = event.touches[0].clientY;
  1442. // If the touch started off with two points and still has
  1443. // two active touches; test for the pinch gesture
  1444. if( event.touches.length === 2 && touch.startCount === 2 && config.overview ) {
  1445. // The current distance in pixels between the two touch points
  1446. var currentSpan = distanceBetween( {
  1447. x: event.touches[1].clientX,
  1448. y: event.touches[1].clientY
  1449. }, {
  1450. x: touch.startX,
  1451. y: touch.startY
  1452. } );
  1453. // If the span is larger than the desire amount we've got
  1454. // ourselves a pinch
  1455. if( Math.abs( touch.startSpan - currentSpan ) > touch.threshold ) {
  1456. touch.handled = true;
  1457. if( currentSpan < touch.startSpan ) {
  1458. activateOverview();
  1459. }
  1460. else {
  1461. deactivateOverview();
  1462. }
  1463. }
  1464. event.preventDefault();
  1465. }
  1466. // There was only one touch point, look for a swipe
  1467. else if( event.touches.length === 1 && touch.startCount !== 2 ) {
  1468. var deltaX = currentX - touch.startX,
  1469. deltaY = currentY - touch.startY;
  1470. if( deltaX > touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) {
  1471. touch.handled = true;
  1472. navigateLeft();
  1473. }
  1474. else if( deltaX < -touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) {
  1475. touch.handled = true;
  1476. navigateRight();
  1477. }
  1478. else if( deltaY > touch.threshold ) {
  1479. touch.handled = true;
  1480. navigateUp();
  1481. }
  1482. else if( deltaY < -touch.threshold ) {
  1483. touch.handled = true;
  1484. navigateDown();
  1485. }
  1486. event.preventDefault();
  1487. }
  1488. }
  1489. // There's a bug with swiping on some Android devices unless
  1490. // the default action is always prevented
  1491. else if( navigator.userAgent.match( /android/gi ) ) {
  1492. event.preventDefault();
  1493. }
  1494. }
  1495. /**
  1496. * Handler for the 'touchend' event.
  1497. */
  1498. function onTouchEnd( event ) {
  1499. touch.handled = false;
  1500. }
  1501. /**
  1502. * Convert pointer down to touch start.
  1503. */
  1504. function onPointerDown( event ) {
  1505. if( event.pointerType === event.MSPOINTER_TYPE_TOUCH ) {
  1506. event.touches = [{ clientX: event.clientX, clientY: event.clientY }];
  1507. onTouchStart( event );
  1508. }
  1509. }
  1510. /**
  1511. * Convert pointer move to touch move.
  1512. */
  1513. function onPointerMove( event ) {
  1514. if( event.pointerType === event.MSPOINTER_TYPE_TOUCH ) {
  1515. event.touches = [{ clientX: event.clientX, clientY: event.clientY }];
  1516. onTouchMove( event );
  1517. }
  1518. }
  1519. /**
  1520. * Convert pointer up to touch end.
  1521. */
  1522. function onPointerUp( event ) {
  1523. if( event.pointerType === event.MSPOINTER_TYPE_TOUCH ) {
  1524. event.touches = [{ clientX: event.clientX, clientY: event.clientY }];
  1525. onTouchEnd( event );
  1526. }
  1527. }
  1528. /**
  1529. * Handles mouse wheel scrolling, throttled to avoid skipping
  1530. * multiple slides.
  1531. */
  1532. function onDocumentMouseScroll( event ) {
  1533. clearTimeout( mouseWheelTimeout );
  1534. mouseWheelTimeout = setTimeout( function() {
  1535. var delta = event.detail || -event.wheelDelta;
  1536. if( delta > 0 ) {
  1537. navigateNext();
  1538. }
  1539. else {
  1540. navigatePrev();
  1541. }
  1542. }, 100 );
  1543. }
  1544. /**
  1545. * Clicking on the progress bar results in a navigation to the
  1546. * closest approximate horizontal slide using this equation:
  1547. *
  1548. * ( clickX / presentationWidth ) * numberOfSlides
  1549. */
  1550. function onProgressClicked( event ) {
  1551. event.preventDefault();
  1552. var slidesTotal = toArray( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).length;
  1553. var slideIndex = Math.floor( ( event.clientX / dom.wrapper.offsetWidth ) * slidesTotal );
  1554. slide( slideIndex );
  1555. }
  1556. /**
  1557. * Event handler for navigation control buttons.
  1558. */
  1559. function onNavigateLeftClicked( event ) { event.preventDefault(); navigateLeft(); }
  1560. function onNavigateRightClicked( event ) { event.preventDefault(); navigateRight(); }
  1561. function onNavigateUpClicked( event ) { event.preventDefault(); navigateUp(); }
  1562. function onNavigateDownClicked( event ) { event.preventDefault(); navigateDown(); }
  1563. function onNavigatePrevClicked( event ) { event.preventDefault(); navigatePrev(); }
  1564. function onNavigateNextClicked( event ) { event.preventDefault(); navigateNext(); }
  1565. /**
  1566. * Handler for the window level 'hashchange' event.
  1567. */
  1568. function onWindowHashChange( event ) {
  1569. readURL();
  1570. }
  1571. /**
  1572. * Handler for the window level 'resize' event.
  1573. */
  1574. function onWindowResize( event ) {
  1575. layout();
  1576. }
  1577. /**
  1578. * Invoked when a slide is and we're in the overview.
  1579. */
  1580. function onOverviewSlideClicked( event ) {
  1581. // TODO There's a bug here where the event listeners are not
  1582. // removed after deactivating the overview.
  1583. if( eventsAreBound && isOverview() ) {
  1584. event.preventDefault();
  1585. var element = event.target;
  1586. while( element && !element.nodeName.match( /section/gi ) ) {
  1587. element = element.parentNode;
  1588. }
  1589. if( element && !element.classList.contains( 'disabled' ) ) {
  1590. deactivateOverview();
  1591. if( element.nodeName.match( /section/gi ) ) {
  1592. var h = parseInt( element.getAttribute( 'data-index-h' ), 10 ),
  1593. v = parseInt( element.getAttribute( 'data-index-v' ), 10 );
  1594. slide( h, v );
  1595. }
  1596. }
  1597. }
  1598. }
  1599. // --------------------------------------------------------------------//
  1600. // ------------------------------- API --------------------------------//
  1601. // --------------------------------------------------------------------//
  1602. return {
  1603. initialize: initialize,
  1604. configure: configure,
  1605. sync: sync,
  1606. // Navigation methods
  1607. slide: slide,
  1608. left: navigateLeft,
  1609. right: navigateRight,
  1610. up: navigateUp,
  1611. down: navigateDown,
  1612. prev: navigatePrev,
  1613. next: navigateNext,
  1614. prevFragment: previousFragment,
  1615. nextFragment: nextFragment,
  1616. // Deprecated aliases
  1617. navigateTo: slide,
  1618. navigateLeft: navigateLeft,
  1619. navigateRight: navigateRight,
  1620. navigateUp: navigateUp,
  1621. navigateDown: navigateDown,
  1622. navigatePrev: navigatePrev,
  1623. navigateNext: navigateNext,
  1624. // Forces an update in slide layout
  1625. layout: layout,
  1626. // Returns an object with the available routes as booleans (left/right/top/bottom)
  1627. availableRoutes: availableRoutes,
  1628. // Returns an object with the available fragments as booleans (prev/next)
  1629. availableFragments: availableFragments,
  1630. // Toggles the overview mode on/off
  1631. toggleOverview: toggleOverview,
  1632. // Toggles the "black screen" mode on/off
  1633. togglePause: togglePause,
  1634. // State checks
  1635. isOverview: isOverview,
  1636. isPaused: isPaused,
  1637. // Adds or removes all internal event listeners (such as keyboard)
  1638. addEventListeners: addEventListeners,
  1639. removeEventListeners: removeEventListeners,
  1640. // Returns the indices of the current, or specified, slide
  1641. getIndices: getIndices,
  1642. // Returns the slide at the specified index, y is optional
  1643. getSlide: function( x, y ) {
  1644. var horizontalSlide = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR )[ x ];
  1645. var verticalSlides = horizontalSlide && horizontalSlide.querySelectorAll( 'section' );
  1646. if( typeof y !== 'undefined' ) {
  1647. return verticalSlides ? verticalSlides[ y ] : undefined;
  1648. }
  1649. return horizontalSlide;
  1650. },
  1651. // Returns the previous slide element, may be null
  1652. getPreviousSlide: function() {
  1653. return previousSlide;
  1654. },
  1655. // Returns the current slide element
  1656. getCurrentSlide: function() {
  1657. return currentSlide;
  1658. },
  1659. // Returns the current scale of the presentation content
  1660. getScale: function() {
  1661. return scale;
  1662. },
  1663. // Returns the current configuration object
  1664. getConfig: function() {
  1665. return config;
  1666. },
  1667. // Helper method, retrieves query string as a key/value hash
  1668. getQueryHash: function() {
  1669. var query = {};
  1670. location.search.replace( /[A-Z0-9]+?=(\w*)/gi, function(a) {
  1671. query[ a.split( '=' ).shift() ] = a.split( '=' ).pop();
  1672. } );
  1673. return query;
  1674. },
  1675. // Returns true if we're currently on the first slide
  1676. isFirstSlide: function() {
  1677. return document.querySelector( SLIDES_SELECTOR + '.past' ) == null ? true : false;
  1678. },
  1679. // Returns true if we're currently on the last slide
  1680. isLastSlide: function() {
  1681. if( currentSlide && currentSlide.classList.contains( '.stack' ) ) {
  1682. return currentSlide.querySelector( SLIDES_SELECTOR + '.future' ) == null ? true : false;
  1683. }
  1684. else {
  1685. return document.querySelector( SLIDES_SELECTOR + '.future' ) == null ? true : false;
  1686. }
  1687. },
  1688. // Forward event binding to the reveal DOM element
  1689. addEventListener: function( type, listener, useCapture ) {
  1690. if( 'addEventListener' in window ) {
  1691. ( dom.wrapper || document.querySelector( '.reveal' ) ).addEventListener( type, listener, useCapture );
  1692. }
  1693. },
  1694. removeEventListener: function( type, listener, useCapture ) {
  1695. if( 'addEventListener' in window ) {
  1696. ( dom.wrapper || document.querySelector( '.reveal' ) ).removeEventListener( type, listener, useCapture );
  1697. }
  1698. }
  1699. };
  1700. })();