reveal.js 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860
  1. /*!
  2. * reveal.js 1.3
  3. * http://lab.hakim.se/reveal-js
  4. * MIT licensed
  5. *
  6. * Copyright (C) 2012 Hakim El Hattab, http://hakim.se
  7. */
  8. var Reveal = (function(){
  9. var HORIZONTAL_SLIDES_SELECTOR = '#reveal .slides>section',
  10. VERTICAL_SLIDES_SELECTOR = '#reveal .slides>section.present>section',
  11. IS_TOUCH_DEVICE = !!( 'ontouchstart' in window ),
  12. // The horizontal and verical index of the currently active slide
  13. indexh = 0,
  14. indexv = 0,
  15. // Configurations options, can be overridden at initialization time
  16. config = {
  17. controls: false,
  18. progress: false,
  19. history: false,
  20. loop: false,
  21. mouseWheel: true,
  22. rollingLinks: true,
  23. transition: 'default',
  24. theme: 'default',
  25. swipeDist: 40
  26. },
  27. // Slides may hold a data-state attribute which we pick up and apply
  28. // as a class to the body. This list contains the combined state of
  29. // all current slides.
  30. state = [],
  31. // Cached references to DOM elements
  32. dom = {},
  33. // Detect support for CSS 3D transforms
  34. supports3DTransforms = document.body.style['perspectiveProperty'] !== undefined ||
  35. document.body.style['WebkitPerspective'] !== undefined ||
  36. document.body.style['MozPerspective'] !== undefined ||
  37. document.body.style['msPerspective'] !== undefined ||
  38. document.body.style['OPerspective'] !== undefined,
  39. supports2DTransforms = document.body.style['transformProperty'] !== undefined ||
  40. document.body.style['WebkitTransform'] !== undefined ||
  41. document.body.style['MozTransform'] !== undefined ||
  42. document.body.style['msTransform'] !== undefined ||
  43. document.body.style['OTransform'] !== undefined,
  44. // Throttles mouse wheel navigation
  45. mouseWheelTimeout = 0,
  46. // Delays updates to the URL due to a Chrome thumbnailer bug
  47. writeURLTimeout = 0;
  48. /**
  49. * Starts up the slideshow by applying configuration
  50. * options and binding various events.
  51. */
  52. function initialize( options ) {
  53. if( !supports2DTransforms && !supports3DTransforms ) {
  54. document.body.setAttribute( 'class', 'no-transforms' );
  55. // If the browser doesn't support transforms we won't be
  56. // using JavaScript to control the presentation
  57. return;
  58. }
  59. // Cache references to DOM elements
  60. dom.wrapper = document.querySelector( '#reveal' );
  61. dom.progress = document.querySelector( '#reveal .progress' );
  62. dom.progressbar = document.querySelector( '#reveal .progress span' );
  63. dom.controls = document.querySelector( '#reveal .controls' );
  64. dom.controlsLeft = document.querySelector( '#reveal .controls .left' );
  65. dom.controlsRight = document.querySelector( '#reveal .controls .right' );
  66. dom.controlsUp = document.querySelector( '#reveal .controls .up' );
  67. dom.controlsDown = document.querySelector( '#reveal .controls .down' );
  68. addEvents();
  69. // Copy options over to our config object
  70. extend( config, options );
  71. // Fall back on the 2D transform theme 'linear'
  72. if( supports3DTransforms === false ) {
  73. config.transition = 'linear';
  74. }
  75. if( config.controls ) {
  76. dom.controls.style.display = 'block';
  77. }
  78. if( config.progress ) {
  79. dom.progress.style.display = 'block';
  80. }
  81. if( config.transition !== 'default' ) {
  82. dom.wrapper.classList.add( config.transition );
  83. }
  84. if( config.theme !== 'default' ) {
  85. dom.wrapper.classList.add( config.theme );
  86. }
  87. if( config.mouseWheel ) {
  88. document.addEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF
  89. document.addEventListener( 'mousewheel', onDocumentMouseScroll, false );
  90. }
  91. if( config.rollingLinks ) {
  92. // Add some 3D magic to our anchors
  93. linkify();
  94. }
  95. // Read the initial hash
  96. readURL();
  97. // Set up hiding of the browser address bar
  98. if( navigator.userAgent.match( /(iphone|ipod|android)/i ) ) {
  99. // Give the page some scrollable overflow
  100. document.documentElement.style.overflow = 'scroll';
  101. document.body.style.height = '120%';
  102. // Events that should trigger the address bar to hide
  103. window.addEventListener( 'load', removeAddressBar, false );
  104. window.addEventListener( 'orientationchange', removeAddressBar, false );
  105. }
  106. }
  107. function addEvents() {
  108. // Bind all view events
  109. document.addEventListener( 'keydown', onDocumentKeyDown, false );
  110. document.addEventListener( 'touchstart', onDocumentTouchStart, false );
  111. document.addEventListener( 'touchmove', onDocumentTouchMove, false );
  112. document.addEventListener( 'touchend', onDocumentTouchEnd, false );
  113. window.addEventListener( 'hashchange', onWindowHashChange, false );
  114. dom.controlsLeft.addEventListener( 'click', preventAndForward( navigateLeft ), false );
  115. dom.controlsRight.addEventListener( 'click', preventAndForward( navigateRight ), false );
  116. dom.controlsUp.addEventListener( 'click', preventAndForward( navigateUp ), false );
  117. dom.controlsDown.addEventListener( 'click', preventAndForward( navigateDown ), false );
  118. }
  119. function removeEvents(){
  120. // Bind all view events
  121. document.removeEventListener( 'keydown', onDocumentKeyDown, false );
  122. document.removeEventListener( 'touchstart', onDocumentTouchStart, false );
  123. document.removeEventListener( 'touchmove', onDocumentTouchMove, false );
  124. document.removeEventListener( 'touchend', onDocumentTouchEnd, false );
  125. window.removeEventListener( 'hashchange', onWindowHashChange, false );
  126. dom.controlsLeft.removeEventListener( 'click', preventAndForward( navigateLeft ), false );
  127. dom.controlsRight.removeEventListener( 'click', preventAndForward( navigateRight ), false );
  128. dom.controlsUp.removeEventListener( 'click', preventAndForward( navigateUp ), false );
  129. dom.controlsDown.removeEventListener( 'click', preventAndForward( navigateDown ), false );
  130. }
  131. /**
  132. * Extend object a with the properties of object b.
  133. * If there's a conflict, object b takes precedence.
  134. */
  135. function extend( a, b ) {
  136. for( var i in b ) {
  137. a[ i ] = b[ i ];
  138. }
  139. }
  140. /**
  141. * Prevents an events defaults behavior calls the
  142. * specified delegate.
  143. *
  144. * @param {Function} delegate The method to call
  145. * after the wrapper has been executed
  146. */
  147. function preventAndForward( delegate ) {
  148. return function( event ) {
  149. event.preventDefault();
  150. delegate.call();
  151. }
  152. }
  153. /**
  154. * Causes the address bar to hide on mobile devices,
  155. * more vertical space ftw.
  156. */
  157. function removeAddressBar() {
  158. setTimeout( function() {
  159. window.scrollTo( 0, 1 );
  160. }, 0 );
  161. }
  162. /**
  163. * Handler for the document level 'keydown' event.
  164. *
  165. * @param {Object} event
  166. */
  167. function onDocumentKeyDown( event ) {
  168. // FFT: Use document.querySelector( ':focus' ) === null
  169. // instead of checking contentEditable?
  170. // Disregard the event if the target is editable or a
  171. // modifier is present
  172. if ( event.target.contentEditable != 'inherit' || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey ) return;
  173. var triggered = false;
  174. switch( event.keyCode ) {
  175. // p, page up
  176. case 80: case 33: navigatePrev(); triggered = true; break;
  177. // n, page down
  178. case 78: case 34: navigateNext(); triggered = true; break;
  179. // h, left
  180. case 72: case 37: navigateLeft(); triggered = true; break;
  181. // l, right
  182. case 76: case 39: navigateRight(); triggered = true; break;
  183. // k, up
  184. case 75: case 38: navigateUp(); triggered = true; break;
  185. // j, down
  186. case 74: case 40: navigateDown(); triggered = true; break;
  187. // home
  188. case 36: navigateTo( 0 ); triggered = true; break;
  189. // end
  190. case 35: navigateTo( Number.MAX_VALUE ); triggered = true; break;
  191. // space
  192. case 32: overviewIsActive() ? deactivateOverview() : navigateNext(); triggered = true; break;
  193. // return
  194. case 13: if( overviewIsActive() ) { deactivateOverview(); triggered = true; } break;
  195. }
  196. if( triggered ) {
  197. event.preventDefault();
  198. }
  199. else if ( event.keyCode === 27 && supports3DTransforms ) {
  200. if( overviewIsActive() ) {
  201. deactivateOverview();
  202. }
  203. else {
  204. activateOverview();
  205. }
  206. event.preventDefault();
  207. }
  208. }
  209. /**
  210. * Handler for the document level 'touchstart' event.
  211. *
  212. * This enables very basic tap interaction for touch
  213. * devices. Added mainly for performance testing of 3D
  214. * transforms on iOS but was so happily surprised with
  215. * how smoothly it runs so I left it in here. Apple +1
  216. *
  217. * @param {Object} event
  218. */
  219. var touchStart = {}
  220. var gesture = false;
  221. function onDocumentTouchStart( event ) {
  222. touchStart = {
  223. x: event.touches[0].clientX,
  224. y: event.touches[0].clientY
  225. };
  226. if( event.target.tagName.toLowerCase() === 'a' || event.target.tagName.toLowerCase() === 'img' ) {
  227. } else {
  228. event.preventDefault();
  229. }
  230. }
  231. function onDocumentTouchMove( event ) {
  232. event.preventDefault();
  233. if(!gesture) {
  234. var touch = {
  235. x: event.touches[0].clientX,
  236. y: event.touches[0].clientY
  237. };
  238. if((touch.x - touchStart.x) > config.swipeDist){
  239. gesture = true;
  240. navigateLeft();
  241. } else if((touch.x - touchStart.x) < -config.swipeDist){
  242. gesture = true;
  243. navigateRight();
  244. } else if((touch.y - touchStart.y) > config.swipeDist){
  245. gesture = true;
  246. navigateUp();
  247. } else if((touch.y - touchStart.y) < -config.swipeDist){
  248. gesture = true;
  249. navigateDown();
  250. }
  251. }
  252. }
  253. function onDocumentTouchEnd( event ) {
  254. if(!gesture){
  255. // Never prevent taps on anchors and images
  256. if( event.target.tagName.toLowerCase() === 'a' || event.target.tagName.toLowerCase() === 'img' ) {
  257. return;
  258. }
  259. // Define the extent of the areas that may be tapped
  260. // to navigate
  261. var wt = window.innerWidth * 0.3;
  262. var ht = window.innerHeight * 0.3;
  263. if( touchStart.x < wt ) {
  264. navigateLeft();
  265. }
  266. else if( touchStart.x > window.innerWidth - wt ) {
  267. navigateRight();
  268. }
  269. else if( touchStart.y < ht ) {
  270. navigateUp();
  271. }
  272. else if( touchStart.y > window.innerHeight - ht ) {
  273. navigateDown();
  274. }
  275. }
  276. gesture = false;
  277. event.preventDefault();
  278. }
  279. /**
  280. * Handles mouse wheel scrolling, throttled to avoid
  281. * skipping multiple slides.
  282. */
  283. function onDocumentMouseScroll( event ){
  284. clearTimeout( mouseWheelTimeout );
  285. mouseWheelTimeout = setTimeout( function() {
  286. var delta = event.detail || -event.wheelDelta;
  287. if( delta > 0 ) {
  288. navigateNext();
  289. }
  290. else {
  291. navigatePrev();
  292. }
  293. }, 100 );
  294. }
  295. /**
  296. * Handler for the window level 'hashchange' event.
  297. *
  298. * @param {Object} event
  299. */
  300. function onWindowHashChange( event ) {
  301. readURL();
  302. }
  303. /**
  304. * Wrap all links in 3D goodness.
  305. */
  306. function linkify() {
  307. if( supports3DTransforms ) {
  308. var nodes = document.querySelectorAll( '#reveal .slides section a:not(.image)' );
  309. for( var i = 0, len = nodes.length; i < len; i++ ) {
  310. var node = nodes[i];
  311. if( node.textContent && !node.querySelector( 'img' ) && ( !node.className || !node.classList.contains( node, 'roll' ) ) ) {
  312. node.classList.add( 'roll' );
  313. node.innerHTML = '<span data-title="'+ node.text +'">' + node.innerHTML + '</span>';
  314. }
  315. };
  316. }
  317. }
  318. /**
  319. * Displays the overview of slides (quick nav) by
  320. * scaling down and arranging all slide elements.
  321. *
  322. * Experimental feature, might be dropped if perf
  323. * can't be improved.
  324. */
  325. function activateOverview() {
  326. dom.wrapper.classList.add( 'overview' );
  327. var horizontalSlides = Array.prototype.slice.call( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );
  328. for( var i = 0, len1 = horizontalSlides.length; i < len1; i++ ) {
  329. var hslide = horizontalSlides[i],
  330. htransform = 'translateZ(-2500px) translate(' + ( ( i - indexh ) * 105 ) + '%, 0%)';
  331. hslide.setAttribute( 'data-index-h', i );
  332. hslide.style.display = 'block';
  333. hslide.style.WebkitTransform = htransform;
  334. hslide.style.MozTransform = htransform;
  335. hslide.style.msTransform = htransform;
  336. hslide.style.OTransform = htransform;
  337. hslide.style.transform = htransform;
  338. if( !hslide.classList.contains( 'stack' ) ) {
  339. // Navigate to this slide on click
  340. hslide.addEventListener( 'click', onOverviewSlideClicked, true );
  341. }
  342. var verticalSlides = Array.prototype.slice.call( hslide.querySelectorAll( 'section' ) );
  343. for( var j = 0, len2 = verticalSlides.length; j < len2; j++ ) {
  344. var vslide = verticalSlides[j],
  345. vtransform = 'translate(0%, ' + ( ( j - indexv ) * 105 ) + '%)';
  346. vslide.setAttribute( 'data-index-h', i );
  347. vslide.setAttribute( 'data-index-v', j );
  348. vslide.style.display = 'block';
  349. vslide.style.WebkitTransform = vtransform;
  350. vslide.style.MozTransform = vtransform;
  351. vslide.style.msTransform = vtransform;
  352. vslide.style.OTransform = vtransform;
  353. vslide.style.transform = vtransform;
  354. // Navigate to this slide on click
  355. vslide.addEventListener( 'click', onOverviewSlideClicked, true );
  356. }
  357. }
  358. }
  359. /**
  360. * Exits the slide overview and enters the currently
  361. * active slide.
  362. */
  363. function deactivateOverview() {
  364. dom.wrapper.classList.remove( 'overview' );
  365. var slides = Array.prototype.slice.call( document.querySelectorAll( '#reveal .slides section' ) );
  366. for( var i = 0, len = slides.length; i < len; i++ ) {
  367. var element = slides[i];
  368. // Resets all transforms to use the external styles
  369. element.style.WebkitTransform = '';
  370. element.style.MozTransform = '';
  371. element.style.msTransform = '';
  372. element.style.OTransform = '';
  373. element.style.transform = '';
  374. element.removeEventListener( 'click', onOverviewSlideClicked );
  375. }
  376. slide();
  377. }
  378. /**
  379. * Checks if the overview is currently active.
  380. *
  381. * @return {Boolean} true if the overview is active,
  382. * false otherwise
  383. */
  384. function overviewIsActive() {
  385. return dom.wrapper.classList.contains( 'overview' );
  386. }
  387. /**
  388. * Invoked when a slide is and we're in the overview.
  389. */
  390. function onOverviewSlideClicked( event ) {
  391. // TODO There's a bug here where the event listeners are not
  392. // removed after deactivating the overview.
  393. if( overviewIsActive() ) {
  394. event.preventDefault();
  395. deactivateOverview();
  396. indexh = this.getAttribute( 'data-index-h' );
  397. indexv = this.getAttribute( 'data-index-v' );
  398. slide();
  399. }
  400. }
  401. /**
  402. * Updates one dimension of slides by showing the slide
  403. * with the specified index.
  404. *
  405. * @param {String} selector A CSS selector that will fetch
  406. * the group of slides we are working with
  407. * @param {Number} index The index of the slide that should be
  408. * shown
  409. *
  410. * @return {Number} The index of the slide that is now shown,
  411. * might differ from the passed in index if it was out of
  412. * bounds.
  413. */
  414. function updateSlides( selector, index ) {
  415. // Select all slides and convert the NodeList result to
  416. // an array
  417. var slides = Array.prototype.slice.call( document.querySelectorAll( selector ) ),
  418. slidesLength = slides.length;
  419. if( slidesLength ) {
  420. // Should the index loop?
  421. if( config.loop ) {
  422. index %= slidesLength;
  423. if( index < 0 ) {
  424. index = slidesLength + index;
  425. }
  426. }
  427. // Enforce max and minimum index bounds
  428. index = Math.max( Math.min( index, slidesLength - 1 ), 0 );
  429. for( var i = 0; i < slidesLength; i++ ) {
  430. var slide = slides[i];
  431. // Optimization; hide all slides that are three or more steps
  432. // away from the present slide
  433. if( overviewIsActive() === false ) {
  434. // The distance loops so that it measures 1 between the first
  435. // and last slides
  436. var distance = Math.abs( ( index - i ) % ( slidesLength - 3 ) ) || 0;
  437. slide.style.display = distance > 3 ? 'none' : 'block';
  438. }
  439. slides[i].classList.remove( 'past' );
  440. slides[i].classList.remove( 'present' );
  441. slides[i].classList.remove( 'future' );
  442. if( i < index ) {
  443. // Any element previous to index is given the 'past' class
  444. slides[i].classList.add( 'past' );
  445. }
  446. else if( i > index ) {
  447. // Any element subsequent to index is given the 'future' class
  448. slides[i].classList.add( 'future' );
  449. }
  450. // If this element contains vertical slides
  451. if( slide.querySelector( 'section' ) ) {
  452. slides[i].classList.add( 'stack' );
  453. }
  454. }
  455. // Mark the current slide as present
  456. slides[index].classList.add( 'present' );
  457. // If this slide has a state associated with it, add it
  458. // onto the current state of the deck
  459. var slideState = slides[index].getAttribute( 'data-state' );
  460. if( slideState ) {
  461. state = state.concat( slideState.split( ' ' ) );
  462. }
  463. }
  464. else {
  465. // Since there are no slides we can't be anywhere beyond the
  466. // zeroth index
  467. index = 0;
  468. }
  469. return index;
  470. }
  471. /**
  472. * Updates the visual slides to represent the currently
  473. * set indices.
  474. */
  475. function slide() {
  476. // Remember the state before this slide
  477. var stateBefore = state.concat();
  478. // Reset the state array
  479. state.length = 0;
  480. // Activate and transition to the new slide
  481. indexh = updateSlides( HORIZONTAL_SLIDES_SELECTOR, indexh );
  482. indexv = updateSlides( VERTICAL_SLIDES_SELECTOR, indexv );
  483. // Apply the new state
  484. stateLoop: for( var i = 0, len = state.length; i < len; i++ ) {
  485. // Check if this state existed on the previous slide. If it
  486. // did, we will avoid adding it repeatedly.
  487. for( var j = 0; j < stateBefore.length; j++ ) {
  488. if( stateBefore[j] === state[i] ) {
  489. stateBefore.splice( j, 1 );
  490. continue stateLoop;
  491. }
  492. }
  493. document.documentElement.classList.add( state[i] );
  494. // Dispatch custom event matching the state's name
  495. dispatchEvent( state[i] );
  496. }
  497. // Clean up the remaints of the previous state
  498. while( stateBefore.length ) {
  499. document.documentElement.classList.remove( stateBefore.pop() );
  500. }
  501. // Update progress if enabled
  502. if( config.progress ) {
  503. dom.progressbar.style.width = ( indexh / ( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ).length - 1 ) ) * window.innerWidth + 'px';
  504. }
  505. // Close the overview if it's active
  506. if( overviewIsActive() ) {
  507. activateOverview();
  508. }
  509. updateControls();
  510. clearTimeout( writeURLTimeout );
  511. writeURLTimeout = setTimeout( writeURL, 1500 );
  512. // Dispatch an event notifying observers of the change in slide
  513. dispatchEvent( 'slidechanged', {
  514. 'indexh': indexh,
  515. 'indexv': indexv
  516. } );
  517. }
  518. /**
  519. * Updates the state and link pointers of the controls.
  520. */
  521. function updateControls() {
  522. var routes = availableRoutes();
  523. // Remove the 'enabled' class from all directions
  524. [ dom.controlsLeft, dom.controlsRight, dom.controlsUp, dom.controlsDown ].forEach( function( node ) {
  525. node.classList.remove( 'enabled' );
  526. } )
  527. if( routes.left ) dom.controlsLeft.classList.add( 'enabled' );
  528. if( routes.right ) dom.controlsRight.classList.add( 'enabled' );
  529. if( routes.up ) dom.controlsUp.classList.add( 'enabled' );
  530. if( routes.down ) dom.controlsDown.classList.add( 'enabled' );
  531. }
  532. /**
  533. * Determine what available routes there are for navigation.
  534. *
  535. * @return {Object} containing four booleans: left/right/up/down
  536. */
  537. function availableRoutes() {
  538. var horizontalSlides = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR );
  539. var verticalSlides = document.querySelectorAll( VERTICAL_SLIDES_SELECTOR );
  540. return {
  541. left: indexh > 0,
  542. right: indexh < horizontalSlides.length - 1,
  543. up: indexv > 0,
  544. down: indexv < verticalSlides.length - 1
  545. };
  546. }
  547. /**
  548. * Reads the current URL (hash) and navigates accordingly.
  549. */
  550. function readURL() {
  551. // Break the hash down to separate components
  552. var bits = window.location.hash.slice(2).split('/');
  553. // Read the index components of the hash
  554. indexh = parseInt( bits[0] ) || 0 ;
  555. indexv = parseInt( bits[1] ) || 0 ;
  556. navigateTo( indexh, indexv );
  557. }
  558. /**
  559. * Updates the page URL (hash) to reflect the current
  560. * state.
  561. */
  562. function writeURL() {
  563. if( config.history ) {
  564. var url = '/';
  565. // Only include the minimum possible number of components in
  566. // the URL
  567. if( indexh > 0 || indexv > 0 ) url += indexh;
  568. if( indexv > 0 ) url += '/' + indexv;
  569. window.location.hash = url;
  570. }
  571. }
  572. /**
  573. * Dispatches an event of the specified type from the
  574. * #reveal DOM element.
  575. */
  576. function dispatchEvent( type, properties ) {
  577. var event = document.createEvent( "HTMLEvents", 1, 2 );
  578. event.initEvent( type, true, true );
  579. extend( event, properties );
  580. dom.wrapper.dispatchEvent( event );
  581. }
  582. /**
  583. * Navigate to the next slide fragment.
  584. *
  585. * @return {Boolean} true if there was a next fragment,
  586. * false otherwise
  587. */
  588. function nextFragment() {
  589. // Vertical slides:
  590. if( document.querySelector( VERTICAL_SLIDES_SELECTOR + '.present' ) ) {
  591. var verticalFragments = document.querySelectorAll( VERTICAL_SLIDES_SELECTOR + '.present .fragment:not(.visible)' );
  592. if( verticalFragments.length ) {
  593. verticalFragments[0].classList.add( 'visible' );
  594. return true;
  595. }
  596. }
  597. // Horizontal slides:
  598. else {
  599. var horizontalFragments = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.present .fragment:not(.visible)' );
  600. if( horizontalFragments.length ) {
  601. horizontalFragments[0].classList.add( 'visible' );
  602. return true;
  603. }
  604. }
  605. return false;
  606. }
  607. /**
  608. * Navigate to the previous slide fragment.
  609. *
  610. * @return {Boolean} true if there was a previous fragment,
  611. * false otherwise
  612. */
  613. function previousFragment() {
  614. // Vertical slides:
  615. if( document.querySelector( VERTICAL_SLIDES_SELECTOR + '.present' ) ) {
  616. var verticalFragments = document.querySelectorAll( VERTICAL_SLIDES_SELECTOR + '.present .fragment.visible' );
  617. if( verticalFragments.length ) {
  618. verticalFragments[ verticalFragments.length - 1 ].classList.remove( 'visible' );
  619. return true;
  620. }
  621. }
  622. // Horizontal slides:
  623. else {
  624. var horizontalFragments = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.present .fragment.visible' );
  625. if( horizontalFragments.length ) {
  626. horizontalFragments[ horizontalFragments.length - 1 ].classList.remove( 'visible' );
  627. return true;
  628. }
  629. }
  630. return false;
  631. }
  632. /**
  633. * Triggers a navigation to the specified indices.
  634. *
  635. * @param {Number} h The horizontal index of the slide to show
  636. * @param {Number} v The vertical index of the slide to show
  637. */
  638. function navigateTo( h, v ) {
  639. indexh = h === undefined ? indexh : h;
  640. indexv = v === undefined ? indexv : v;
  641. slide();
  642. }
  643. function navigateLeft() {
  644. // Prioritize hiding fragments
  645. if( overviewIsActive() || previousFragment() === false ) {
  646. indexh --;
  647. indexv = 0;
  648. slide();
  649. }
  650. }
  651. function navigateRight() {
  652. // Prioritize revealing fragments
  653. if( overviewIsActive() || nextFragment() === false ) {
  654. indexh ++;
  655. indexv = 0;
  656. slide();
  657. }
  658. }
  659. function navigateUp() {
  660. // Prioritize hiding fragments
  661. if( overviewIsActive() || previousFragment() === false ) {
  662. indexv --;
  663. slide();
  664. }
  665. }
  666. function navigateDown() {
  667. // Prioritize revealing fragments
  668. if( overviewIsActive() || nextFragment() === false ) {
  669. indexv ++;
  670. slide();
  671. }
  672. }
  673. /**
  674. * Navigates backwards, prioritized in the following order:
  675. * 1) Previous fragment
  676. * 2) Previous vertical slide
  677. * 3) Previous horizontal slide
  678. */
  679. function navigatePrev() {
  680. // Prioritize revealing fragments
  681. if( previousFragment() === false ) {
  682. if( availableRoutes().up ) {
  683. navigateUp();
  684. }
  685. else {
  686. // Fetch the previous horizontal slide, if there is one
  687. var previousSlide = document.querySelector( '#reveal .slides>section.past:nth-child(' + indexh + ')' );
  688. if( previousSlide ) {
  689. indexv = ( previousSlide.querySelectorAll('section').length + 1 ) || 0;
  690. indexh --;
  691. slide();
  692. }
  693. }
  694. }
  695. }
  696. /**
  697. * Same as #navigatePrev() but navigates forwards.
  698. */
  699. function navigateNext() {
  700. // Prioritize revealing fragments
  701. if( nextFragment() === false ) {
  702. availableRoutes().down ? navigateDown() : navigateRight();
  703. }
  704. }
  705. function overviewToggle (){
  706. if( overviewIsActive() ) {
  707. deactivateOverview();
  708. }
  709. else {
  710. activateOverview();
  711. }
  712. }
  713. // Expose some methods publicly
  714. return {
  715. initialize: initialize,
  716. navigateTo: navigateTo,
  717. navigateLeft: navigateLeft,
  718. navigateRight: navigateRight,
  719. navigateUp: navigateUp,
  720. navigateDown: navigateDown,
  721. overviewToggle: overviewToggle,
  722. addEvents: addEvents,
  723. removeEvents: removeEvents,
  724. // Forward event binding to the reveal DOM element
  725. addEventListener: function( type, listener, useCapture ) {
  726. ( dom.wrapper || document.querySelector( '#reveal' ) ).addEventListener( type, listener, useCapture );
  727. },
  728. removeEventListener: function( type, listener, useCapture ) {
  729. ( dom.wrapper || document.querySelector( '#reveal' ) ).removeEventListener( type, listener, useCapture );
  730. }
  731. };
  732. })();