reveal.js 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159
  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-of-type',
  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 centering 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. // Flags if the presentation is running in an embedded mode,
  46. // i.e. contained within a limited portion of the screen
  47. embedded: false,
  48. // Number of milliseconds between automatically proceeding to the
  49. // next slide, disabled when set to 0, this value can be overwritten
  50. // by using a data-autoslide attribute on your slides
  51. autoSlide: 0,
  52. // Stop auto-sliding after user input
  53. autoSlideStoppable: true,
  54. // Enable slide navigation via mouse wheel
  55. mouseWheel: false,
  56. // Apply a 3D roll to links on hover
  57. rollingLinks: false,
  58. // Hides the address bar on mobile devices
  59. hideAddressBar: true,
  60. // Opens links in an iframe preview overlay
  61. previewLinks: false,
  62. // Focuses body when page changes visiblity to ensure keyboard shortcuts work
  63. focusBodyOnPageVisiblityChange: true,
  64. // Theme (see /css/theme)
  65. theme: null,
  66. // Transition style
  67. transition: 'default', // default/cube/page/concave/zoom/linear/fade/none
  68. // Transition speed
  69. transitionSpeed: 'default', // default/fast/slow
  70. // Transition style for full page slide backgrounds
  71. backgroundTransition: 'default', // default/linear/none
  72. // Parallax background image
  73. parallaxBackgroundImage: '', // CSS syntax, e.g. "a.jpg"
  74. // Parallax background size
  75. parallaxBackgroundSize: '', // CSS syntax, e.g. "3000px 2000px"
  76. // Number of slides away from the current that are visible
  77. viewDistance: 3,
  78. // Script dependencies to load
  79. dependencies: []
  80. },
  81. // Flags if reveal.js is loaded (has dispatched the 'ready' event)
  82. loaded = false,
  83. // The horizontal and vertical index of the currently active slide
  84. indexh,
  85. indexv,
  86. // The previous and current slide HTML elements
  87. previousSlide,
  88. currentSlide,
  89. // Slides may hold a data-state attribute which we pick up and apply
  90. // as a class to the body. This list contains the combined state of
  91. // all current slides.
  92. state = [],
  93. // The current scale of the presentation (see width/height config)
  94. scale = 1,
  95. // Cached references to DOM elements
  96. dom = {},
  97. // Features supported by the browser, see #checkCapabilities()
  98. features = {},
  99. // Client is a mobile device, see #checkCapabilities()
  100. isMobileDevice,
  101. // Throttles mouse wheel navigation
  102. lastMouseWheelStep = 0,
  103. // Delays updates to the URL due to a Chrome thumbnailer bug
  104. writeURLTimeout = 0,
  105. // A delay used to activate the overview mode
  106. activateOverviewTimeout = 0,
  107. // A delay used to deactivate the overview mode
  108. deactivateOverviewTimeout = 0,
  109. // Flags if the interaction event listeners are bound
  110. eventsAreBound = false,
  111. // The current auto-slide duration
  112. autoSlide = 0,
  113. // Auto slide properties
  114. autoSlidePlayer,
  115. autoSlideTimeout = 0,
  116. autoSlideStartTime = -1,
  117. autoSlidePaused = false,
  118. // Holds information about the currently ongoing touch input
  119. touch = {
  120. startX: 0,
  121. startY: 0,
  122. startSpan: 0,
  123. startCount: 0,
  124. captured: false,
  125. threshold: 40
  126. };
  127. /**
  128. * Starts up the presentation if the client is capable.
  129. */
  130. function initialize( options ) {
  131. checkCapabilities();
  132. if( !features.transforms2d && !features.transforms3d ) {
  133. document.body.setAttribute( 'class', 'no-transforms' );
  134. // If the browser doesn't support core features we won't be
  135. // using JavaScript to control the presentation
  136. return;
  137. }
  138. // Force a layout when the whole page, incl fonts, has loaded
  139. window.addEventListener( 'load', layout, false );
  140. var query = Reveal.getQueryHash();
  141. // Do not accept new dependencies via query config to avoid
  142. // the potential of malicious script injection
  143. if( typeof query['dependencies'] !== 'undefined' ) delete query['dependencies'];
  144. // Copy options over to our config object
  145. extend( config, options );
  146. extend( config, query );
  147. // Hide the address bar in mobile browsers
  148. hideAddressBar();
  149. // Loads the dependencies and continues to #start() once done
  150. load();
  151. }
  152. /**
  153. * Inspect the client to see what it's capable of, this
  154. * should only happens once per runtime.
  155. */
  156. function checkCapabilities() {
  157. features.transforms3d = 'WebkitPerspective' in document.body.style ||
  158. 'MozPerspective' in document.body.style ||
  159. 'msPerspective' in document.body.style ||
  160. 'OPerspective' in document.body.style ||
  161. 'perspective' in document.body.style;
  162. features.transforms2d = 'WebkitTransform' in document.body.style ||
  163. 'MozTransform' in document.body.style ||
  164. 'msTransform' in document.body.style ||
  165. 'OTransform' in document.body.style ||
  166. 'transform' in document.body.style;
  167. features.requestAnimationFrameMethod = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame;
  168. features.requestAnimationFrame = typeof features.requestAnimationFrameMethod === 'function';
  169. features.canvas = !!document.createElement( 'canvas' ).getContext;
  170. isMobileDevice = navigator.userAgent.match( /(iphone|ipod|android)/gi );
  171. }
  172. /**
  173. * Loads the dependencies of reveal.js. Dependencies are
  174. * defined via the configuration option 'dependencies'
  175. * and will be loaded prior to starting/binding reveal.js.
  176. * Some dependencies may have an 'async' flag, if so they
  177. * will load after reveal.js has been started up.
  178. */
  179. function load() {
  180. var scripts = [],
  181. scriptsAsync = [];
  182. for( var i = 0, len = config.dependencies.length; i < len; i++ ) {
  183. var s = config.dependencies[i];
  184. // Load if there's no condition or the condition is truthy
  185. if( !s.condition || s.condition() ) {
  186. if( s.async ) {
  187. scriptsAsync.push( s.src );
  188. }
  189. else {
  190. scripts.push( s.src );
  191. }
  192. // Extension may contain callback functions
  193. if( typeof s.callback === 'function' ) {
  194. head.ready( s.src.match( /([\w\d_\-]*)\.?js$|[^\\\/]*$/i )[0], s.callback );
  195. }
  196. }
  197. }
  198. // Called once synchronous scripts finish loading
  199. function proceed() {
  200. if( scriptsAsync.length ) {
  201. // Load asynchronous scripts
  202. head.js.apply( null, scriptsAsync );
  203. }
  204. start();
  205. }
  206. if( scripts.length ) {
  207. head.ready( proceed );
  208. // Load synchronous scripts
  209. head.js.apply( null, scripts );
  210. }
  211. else {
  212. proceed();
  213. }
  214. }
  215. /**
  216. * Starts up reveal.js by binding input events and navigating
  217. * to the current URL deeplink if there is one.
  218. */
  219. function start() {
  220. // Make sure we've got all the DOM elements we need
  221. setupDOM();
  222. // Decorate the slide DOM elements with state classes (past/future)
  223. setupSlides();
  224. // Updates the presentation to match the current configuration values
  225. configure();
  226. // Read the initial hash
  227. readURL();
  228. // Notify listeners that the presentation is ready but use a 1ms
  229. // timeout to ensure it's not fired synchronously after #initialize()
  230. setTimeout( function() {
  231. // Enable transitions now that we're loaded
  232. dom.slides.classList.remove( 'no-transition' );
  233. loaded = true;
  234. dispatchEvent( 'ready', {
  235. 'indexh': indexh,
  236. 'indexv': indexv,
  237. 'currentSlide': currentSlide
  238. } );
  239. }, 1 );
  240. }
  241. /**
  242. * Iterates through and decorates slides DOM elements with
  243. * appropriate classes.
  244. */
  245. function setupSlides() {
  246. var horizontalSlides = toArray( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );
  247. horizontalSlides.forEach( function( horizontalSlide ) {
  248. var verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );
  249. verticalSlides.forEach( function( verticalSlide, y ) {
  250. if( y > 0 ) verticalSlide.classList.add( 'future' );
  251. } );
  252. } );
  253. }
  254. /**
  255. * Finds and stores references to DOM elements which are
  256. * required by the presentation. If a required element is
  257. * not found, it is created.
  258. */
  259. function setupDOM() {
  260. // Cache references to key DOM elements
  261. dom.theme = document.querySelector( '#theme' );
  262. dom.wrapper = document.querySelector( '.reveal' );
  263. dom.slides = document.querySelector( '.reveal .slides' );
  264. // Prevent transitions while we're loading
  265. dom.slides.classList.add( 'no-transition' );
  266. // Background element
  267. dom.background = createSingletonNode( dom.wrapper, 'div', 'backgrounds', null );
  268. // Progress bar
  269. dom.progress = createSingletonNode( dom.wrapper, 'div', 'progress', '<span></span>' );
  270. dom.progressbar = dom.progress.querySelector( 'span' );
  271. // Arrow controls
  272. createSingletonNode( dom.wrapper, 'aside', 'controls',
  273. '<div class="navigate-left"></div>' +
  274. '<div class="navigate-right"></div>' +
  275. '<div class="navigate-up"></div>' +
  276. '<div class="navigate-down"></div>' );
  277. // State background element [DEPRECATED]
  278. createSingletonNode( dom.wrapper, 'div', 'state-background', null );
  279. // Overlay graphic which is displayed during the paused mode
  280. createSingletonNode( dom.wrapper, 'div', 'pause-overlay', null );
  281. // Cache references to elements
  282. dom.controls = document.querySelector( '.reveal .controls' );
  283. // There can be multiple instances of controls throughout the page
  284. dom.controlsLeft = toArray( document.querySelectorAll( '.navigate-left' ) );
  285. dom.controlsRight = toArray( document.querySelectorAll( '.navigate-right' ) );
  286. dom.controlsUp = toArray( document.querySelectorAll( '.navigate-up' ) );
  287. dom.controlsDown = toArray( document.querySelectorAll( '.navigate-down' ) );
  288. dom.controlsPrev = toArray( document.querySelectorAll( '.navigate-prev' ) );
  289. dom.controlsNext = toArray( document.querySelectorAll( '.navigate-next' ) );
  290. }
  291. /**
  292. * Creates an HTML element and returns a reference to it.
  293. * If the element already exists the existing instance will
  294. * be returned.
  295. */
  296. function createSingletonNode( container, tagname, classname, innerHTML ) {
  297. var node = container.querySelector( '.' + classname );
  298. if( !node ) {
  299. node = document.createElement( tagname );
  300. node.classList.add( classname );
  301. if( innerHTML !== null ) {
  302. node.innerHTML = innerHTML;
  303. }
  304. container.appendChild( node );
  305. }
  306. return node;
  307. }
  308. /**
  309. * Creates the slide background elements and appends them
  310. * to the background container. One element is created per
  311. * slide no matter if the given slide has visible background.
  312. */
  313. function createBackgrounds() {
  314. if( isPrintingPDF() ) {
  315. document.body.classList.add( 'print-pdf' );
  316. }
  317. // Clear prior backgrounds
  318. dom.background.innerHTML = '';
  319. dom.background.classList.add( 'no-transition' );
  320. // Helper method for creating a background element for the
  321. // given slide
  322. function _createBackground( slide, container ) {
  323. var data = {
  324. background: slide.getAttribute( 'data-background' ),
  325. backgroundSize: slide.getAttribute( 'data-background-size' ),
  326. backgroundImage: slide.getAttribute( 'data-background-image' ),
  327. backgroundColor: slide.getAttribute( 'data-background-color' ),
  328. backgroundRepeat: slide.getAttribute( 'data-background-repeat' ),
  329. backgroundPosition: slide.getAttribute( 'data-background-position' ),
  330. backgroundTransition: slide.getAttribute( 'data-background-transition' )
  331. };
  332. var element = document.createElement( 'div' );
  333. element.className = 'slide-background';
  334. if( data.background ) {
  335. // Auto-wrap image urls in url(...)
  336. if( /^(http|file|\/\/)/gi.test( data.background ) || /\.(svg|png|jpg|jpeg|gif|bmp)$/gi.test( data.background ) ) {
  337. element.style.backgroundImage = 'url('+ data.background +')';
  338. }
  339. else {
  340. element.style.background = data.background;
  341. }
  342. }
  343. // Additional and optional background properties
  344. if( data.backgroundSize ) element.style.backgroundSize = data.backgroundSize;
  345. if( data.backgroundImage ) element.style.backgroundImage = 'url("' + data.backgroundImage + '")';
  346. if( data.backgroundColor ) element.style.backgroundColor = data.backgroundColor;
  347. if( data.backgroundRepeat ) element.style.backgroundRepeat = data.backgroundRepeat;
  348. if( data.backgroundPosition ) element.style.backgroundPosition = data.backgroundPosition;
  349. if( data.backgroundTransition ) element.setAttribute( 'data-background-transition', data.backgroundTransition );
  350. container.appendChild( element );
  351. return element;
  352. }
  353. // Iterate over all horizontal slides
  354. toArray( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( slideh ) {
  355. var backgroundStack;
  356. if( isPrintingPDF() ) {
  357. backgroundStack = _createBackground( slideh, slideh );
  358. }
  359. else {
  360. backgroundStack = _createBackground( slideh, dom.background );
  361. }
  362. // Iterate over all vertical slides
  363. toArray( slideh.querySelectorAll( 'section' ) ).forEach( function( slidev ) {
  364. if( isPrintingPDF() ) {
  365. _createBackground( slidev, slidev );
  366. }
  367. else {
  368. _createBackground( slidev, backgroundStack );
  369. }
  370. } );
  371. } );
  372. // Add parallax background if specified
  373. if( config.parallaxBackgroundImage ) {
  374. dom.background.style.backgroundImage = 'url("' + config.parallaxBackgroundImage + '")';
  375. dom.background.style.backgroundSize = config.parallaxBackgroundSize;
  376. // Make sure the below properties are set on the element - these properties are
  377. // needed for proper transitions to be set on the element via CSS. To remove
  378. // annoying background slide-in effect when the presentation starts, apply
  379. // these properties after short time delay
  380. setTimeout( function() {
  381. dom.wrapper.classList.add( 'has-parallax-background' );
  382. }, 1 );
  383. }
  384. else {
  385. dom.background.style.backgroundImage = '';
  386. dom.wrapper.classList.remove( 'has-parallax-background' );
  387. }
  388. }
  389. /**
  390. * Applies the configuration settings from the config
  391. * object. May be called multiple times.
  392. */
  393. function configure( options ) {
  394. var numberOfSlides = document.querySelectorAll( SLIDES_SELECTOR ).length;
  395. dom.wrapper.classList.remove( config.transition );
  396. // New config options may be passed when this method
  397. // is invoked through the API after initialization
  398. if( typeof options === 'object' ) extend( config, options );
  399. // Force linear transition based on browser capabilities
  400. if( features.transforms3d === false ) config.transition = 'linear';
  401. dom.wrapper.classList.add( config.transition );
  402. dom.wrapper.setAttribute( 'data-transition-speed', config.transitionSpeed );
  403. dom.wrapper.setAttribute( 'data-background-transition', config.backgroundTransition );
  404. dom.controls.style.display = config.controls ? 'block' : 'none';
  405. dom.progress.style.display = config.progress ? 'block' : 'none';
  406. if( config.rtl ) {
  407. dom.wrapper.classList.add( 'rtl' );
  408. }
  409. else {
  410. dom.wrapper.classList.remove( 'rtl' );
  411. }
  412. if( config.center ) {
  413. dom.wrapper.classList.add( 'center' );
  414. }
  415. else {
  416. dom.wrapper.classList.remove( 'center' );
  417. }
  418. if( config.mouseWheel ) {
  419. document.addEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF
  420. document.addEventListener( 'mousewheel', onDocumentMouseScroll, false );
  421. }
  422. else {
  423. document.removeEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF
  424. document.removeEventListener( 'mousewheel', onDocumentMouseScroll, false );
  425. }
  426. // Rolling 3D links
  427. if( config.rollingLinks ) {
  428. enableRollingLinks();
  429. }
  430. else {
  431. disableRollingLinks();
  432. }
  433. // Iframe link previews
  434. if( config.previewLinks ) {
  435. enablePreviewLinks();
  436. }
  437. else {
  438. disablePreviewLinks();
  439. enablePreviewLinks( '[data-preview-link]' );
  440. }
  441. // Auto-slide playback controls
  442. if( numberOfSlides > 1 && config.autoSlide && config.autoSlideStoppable && features.canvas && features.requestAnimationFrame ) {
  443. autoSlidePlayer = new Playback( dom.wrapper, function() {
  444. return Math.min( Math.max( ( Date.now() - autoSlideStartTime ) / autoSlide, 0 ), 1 );
  445. } );
  446. autoSlidePlayer.on( 'click', onAutoSlidePlayerClick );
  447. autoSlidePaused = false;
  448. }
  449. else if( autoSlidePlayer ) {
  450. autoSlidePlayer.destroy();
  451. autoSlidePlayer = null;
  452. }
  453. // Load the theme in the config, if it's not already loaded
  454. if( config.theme && dom.theme ) {
  455. var themeURL = dom.theme.getAttribute( 'href' );
  456. var themeFinder = /[^\/]*?(?=\.css)/;
  457. var themeName = themeURL.match(themeFinder)[0];
  458. if( config.theme !== themeName ) {
  459. themeURL = themeURL.replace(themeFinder, config.theme);
  460. dom.theme.setAttribute( 'href', themeURL );
  461. }
  462. }
  463. sync();
  464. }
  465. /**
  466. * Binds all event listeners.
  467. */
  468. function addEventListeners() {
  469. eventsAreBound = true;
  470. window.addEventListener( 'hashchange', onWindowHashChange, false );
  471. window.addEventListener( 'resize', onWindowResize, false );
  472. if( config.touch ) {
  473. dom.wrapper.addEventListener( 'touchstart', onTouchStart, false );
  474. dom.wrapper.addEventListener( 'touchmove', onTouchMove, false );
  475. dom.wrapper.addEventListener( 'touchend', onTouchEnd, false );
  476. // Support pointer-style touch interaction as well
  477. if( window.navigator.msPointerEnabled ) {
  478. dom.wrapper.addEventListener( 'MSPointerDown', onPointerDown, false );
  479. dom.wrapper.addEventListener( 'MSPointerMove', onPointerMove, false );
  480. dom.wrapper.addEventListener( 'MSPointerUp', onPointerUp, false );
  481. }
  482. }
  483. if( config.keyboard ) {
  484. document.addEventListener( 'keydown', onDocumentKeyDown, false );
  485. }
  486. if( config.progress && dom.progress ) {
  487. dom.progress.addEventListener( 'click', onProgressClicked, false );
  488. }
  489. if( config.focusBodyOnPageVisiblityChange ) {
  490. var visibilityChange;
  491. if( 'hidden' in document ) {
  492. visibilityChange = 'visibilitychange';
  493. }
  494. else if( 'msHidden' in document ) {
  495. visibilityChange = 'msvisibilitychange';
  496. }
  497. else if( 'webkitHidden' in document ) {
  498. visibilityChange = 'webkitvisibilitychange';
  499. }
  500. if( visibilityChange ) {
  501. document.addEventListener( visibilityChange, onPageVisibilityChange, false );
  502. }
  503. }
  504. [ 'touchstart', 'click' ].forEach( function( eventName ) {
  505. dom.controlsLeft.forEach( function( el ) { el.addEventListener( eventName, onNavigateLeftClicked, false ); } );
  506. dom.controlsRight.forEach( function( el ) { el.addEventListener( eventName, onNavigateRightClicked, false ); } );
  507. dom.controlsUp.forEach( function( el ) { el.addEventListener( eventName, onNavigateUpClicked, false ); } );
  508. dom.controlsDown.forEach( function( el ) { el.addEventListener( eventName, onNavigateDownClicked, false ); } );
  509. dom.controlsPrev.forEach( function( el ) { el.addEventListener( eventName, onNavigatePrevClicked, false ); } );
  510. dom.controlsNext.forEach( function( el ) { el.addEventListener( eventName, onNavigateNextClicked, false ); } );
  511. } );
  512. }
  513. /**
  514. * Unbinds all event listeners.
  515. */
  516. function removeEventListeners() {
  517. eventsAreBound = false;
  518. document.removeEventListener( 'keydown', onDocumentKeyDown, false );
  519. window.removeEventListener( 'hashchange', onWindowHashChange, false );
  520. window.removeEventListener( 'resize', onWindowResize, false );
  521. dom.wrapper.removeEventListener( 'touchstart', onTouchStart, false );
  522. dom.wrapper.removeEventListener( 'touchmove', onTouchMove, false );
  523. dom.wrapper.removeEventListener( 'touchend', onTouchEnd, false );
  524. if( window.navigator.msPointerEnabled ) {
  525. dom.wrapper.removeEventListener( 'MSPointerDown', onPointerDown, false );
  526. dom.wrapper.removeEventListener( 'MSPointerMove', onPointerMove, false );
  527. dom.wrapper.removeEventListener( 'MSPointerUp', onPointerUp, false );
  528. }
  529. if ( config.progress && dom.progress ) {
  530. dom.progress.removeEventListener( 'click', onProgressClicked, false );
  531. }
  532. [ 'touchstart', 'click' ].forEach( function( eventName ) {
  533. dom.controlsLeft.forEach( function( el ) { el.removeEventListener( eventName, onNavigateLeftClicked, false ); } );
  534. dom.controlsRight.forEach( function( el ) { el.removeEventListener( eventName, onNavigateRightClicked, false ); } );
  535. dom.controlsUp.forEach( function( el ) { el.removeEventListener( eventName, onNavigateUpClicked, false ); } );
  536. dom.controlsDown.forEach( function( el ) { el.removeEventListener( eventName, onNavigateDownClicked, false ); } );
  537. dom.controlsPrev.forEach( function( el ) { el.removeEventListener( eventName, onNavigatePrevClicked, false ); } );
  538. dom.controlsNext.forEach( function( el ) { el.removeEventListener( eventName, onNavigateNextClicked, false ); } );
  539. } );
  540. }
  541. /**
  542. * Extend object a with the properties of object b.
  543. * If there's a conflict, object b takes precedence.
  544. */
  545. function extend( a, b ) {
  546. for( var i in b ) {
  547. a[ i ] = b[ i ];
  548. }
  549. }
  550. /**
  551. * Converts the target object to an array.
  552. */
  553. function toArray( o ) {
  554. return Array.prototype.slice.call( o );
  555. }
  556. /**
  557. * Measures the distance in pixels between point a
  558. * and point b.
  559. *
  560. * @param {Object} a point with x/y properties
  561. * @param {Object} b point with x/y properties
  562. */
  563. function distanceBetween( a, b ) {
  564. var dx = a.x - b.x,
  565. dy = a.y - b.y;
  566. return Math.sqrt( dx*dx + dy*dy );
  567. }
  568. /**
  569. * Applies a CSS transform to the target element.
  570. */
  571. function transformElement( element, transform ) {
  572. element.style.WebkitTransform = transform;
  573. element.style.MozTransform = transform;
  574. element.style.msTransform = transform;
  575. element.style.OTransform = transform;
  576. element.style.transform = transform;
  577. }
  578. /**
  579. * Retrieves the height of the given element by looking
  580. * at the position and height of its immediate children.
  581. */
  582. function getAbsoluteHeight( element ) {
  583. var height = 0;
  584. if( element ) {
  585. var absoluteChildren = 0;
  586. toArray( element.childNodes ).forEach( function( child ) {
  587. if( typeof child.offsetTop === 'number' && child.style ) {
  588. // Count # of abs children
  589. if( child.style.position === 'absolute' ) {
  590. absoluteChildren += 1;
  591. }
  592. height = Math.max( height, child.offsetTop + child.offsetHeight );
  593. }
  594. } );
  595. // If there are no absolute children, use offsetHeight
  596. if( absoluteChildren === 0 ) {
  597. height = element.offsetHeight;
  598. }
  599. }
  600. return height;
  601. }
  602. /**
  603. * Returns the remaining height within the parent of the
  604. * target element after subtracting the height of all
  605. * siblings.
  606. *
  607. * remaining height = [parent height] - [ siblings height]
  608. */
  609. function getRemainingHeight( element, height ) {
  610. height = height || 0;
  611. if( element ) {
  612. var parent = element.parentNode;
  613. var siblings = parent.childNodes;
  614. // Subtract the height of each sibling
  615. toArray( siblings ).forEach( function( sibling ) {
  616. if( typeof sibling.offsetHeight === 'number' && sibling !== element ) {
  617. var styles = window.getComputedStyle( sibling ),
  618. marginTop = parseInt( styles.marginTop, 10 ),
  619. marginBottom = parseInt( styles.marginBottom, 10 );
  620. height -= sibling.offsetHeight + marginTop + marginBottom;
  621. }
  622. } );
  623. var elementStyles = window.getComputedStyle( element );
  624. // Subtract the margins of the target element
  625. height -= parseInt( elementStyles.marginTop, 10 ) +
  626. parseInt( elementStyles.marginBottom, 10 );
  627. }
  628. return height;
  629. }
  630. /**
  631. * Checks if this instance is being used to print a PDF.
  632. */
  633. function isPrintingPDF() {
  634. return ( /print-pdf/gi ).test( window.location.search );
  635. }
  636. /**
  637. * Hides the address bar if we're on a mobile device.
  638. */
  639. function hideAddressBar() {
  640. if( config.hideAddressBar && isMobileDevice ) {
  641. // Events that should trigger the address bar to hide
  642. window.addEventListener( 'load', removeAddressBar, false );
  643. window.addEventListener( 'orientationchange', removeAddressBar, false );
  644. }
  645. }
  646. /**
  647. * Causes the address bar to hide on mobile devices,
  648. * more vertical space ftw.
  649. */
  650. function removeAddressBar() {
  651. setTimeout( function() {
  652. window.scrollTo( 0, 1 );
  653. }, 10 );
  654. }
  655. /**
  656. * Dispatches an event of the specified type from the
  657. * reveal DOM element.
  658. */
  659. function dispatchEvent( type, properties ) {
  660. var event = document.createEvent( "HTMLEvents", 1, 2 );
  661. event.initEvent( type, true, true );
  662. extend( event, properties );
  663. dom.wrapper.dispatchEvent( event );
  664. }
  665. /**
  666. * Wrap all links in 3D goodness.
  667. */
  668. function enableRollingLinks() {
  669. if( features.transforms3d && !( 'msPerspective' in document.body.style ) ) {
  670. var anchors = document.querySelectorAll( SLIDES_SELECTOR + ' a:not(.image)' );
  671. for( var i = 0, len = anchors.length; i < len; i++ ) {
  672. var anchor = anchors[i];
  673. if( anchor.textContent && !anchor.querySelector( '*' ) && ( !anchor.className || !anchor.classList.contains( anchor, 'roll' ) ) ) {
  674. var span = document.createElement('span');
  675. span.setAttribute('data-title', anchor.text);
  676. span.innerHTML = anchor.innerHTML;
  677. anchor.classList.add( 'roll' );
  678. anchor.innerHTML = '';
  679. anchor.appendChild(span);
  680. }
  681. }
  682. }
  683. }
  684. /**
  685. * Unwrap all 3D links.
  686. */
  687. function disableRollingLinks() {
  688. var anchors = document.querySelectorAll( SLIDES_SELECTOR + ' a.roll' );
  689. for( var i = 0, len = anchors.length; i < len; i++ ) {
  690. var anchor = anchors[i];
  691. var span = anchor.querySelector( 'span' );
  692. if( span ) {
  693. anchor.classList.remove( 'roll' );
  694. anchor.innerHTML = span.innerHTML;
  695. }
  696. }
  697. }
  698. /**
  699. * Bind preview frame links.
  700. */
  701. function enablePreviewLinks( selector ) {
  702. var anchors = toArray( document.querySelectorAll( selector ? selector : 'a' ) );
  703. anchors.forEach( function( element ) {
  704. if( /^(http|www)/gi.test( element.getAttribute( 'href' ) ) ) {
  705. element.addEventListener( 'click', onPreviewLinkClicked, false );
  706. }
  707. } );
  708. }
  709. /**
  710. * Unbind preview frame links.
  711. */
  712. function disablePreviewLinks() {
  713. var anchors = toArray( document.querySelectorAll( 'a' ) );
  714. anchors.forEach( function( element ) {
  715. if( /^(http|www)/gi.test( element.getAttribute( 'href' ) ) ) {
  716. element.removeEventListener( 'click', onPreviewLinkClicked, false );
  717. }
  718. } );
  719. }
  720. /**
  721. * Opens a preview window for the target URL.
  722. */
  723. function openPreview( url ) {
  724. closePreview();
  725. dom.preview = document.createElement( 'div' );
  726. dom.preview.classList.add( 'preview-link-overlay' );
  727. dom.wrapper.appendChild( dom.preview );
  728. dom.preview.innerHTML = [
  729. '<header>',
  730. '<a class="close" href="#"><span class="icon"></span></a>',
  731. '<a class="external" href="'+ url +'" target="_blank"><span class="icon"></span></a>',
  732. '</header>',
  733. '<div class="spinner"></div>',
  734. '<div class="viewport">',
  735. '<iframe src="'+ url +'"></iframe>',
  736. '</div>'
  737. ].join('');
  738. dom.preview.querySelector( 'iframe' ).addEventListener( 'load', function( event ) {
  739. dom.preview.classList.add( 'loaded' );
  740. }, false );
  741. dom.preview.querySelector( '.close' ).addEventListener( 'click', function( event ) {
  742. closePreview();
  743. event.preventDefault();
  744. }, false );
  745. dom.preview.querySelector( '.external' ).addEventListener( 'click', function( event ) {
  746. closePreview();
  747. }, false );
  748. setTimeout( function() {
  749. dom.preview.classList.add( 'visible' );
  750. }, 1 );
  751. }
  752. /**
  753. * Closes the iframe preview window.
  754. */
  755. function closePreview() {
  756. if( dom.preview ) {
  757. dom.preview.setAttribute( 'src', '' );
  758. dom.preview.parentNode.removeChild( dom.preview );
  759. dom.preview = null;
  760. }
  761. }
  762. /**
  763. * Return a sorted fragments list, ordered by an increasing
  764. * "data-fragment-index" attribute.
  765. *
  766. * Fragments will be revealed in the order that they are returned by
  767. * this function, so you can use the index attributes to control the
  768. * order of fragment appearance.
  769. *
  770. * To maintain a sensible default fragment order, fragments are presumed
  771. * to be passed in document order. This function adds a "fragment-index"
  772. * attribute to each node if such an attribute is not already present,
  773. * and sets that attribute to an integer value which is the position of
  774. * the fragment within the fragments list.
  775. */
  776. function sortFragments( fragments ) {
  777. var a = toArray( fragments );
  778. a.forEach( function( el, idx ) {
  779. if( !el.hasAttribute( 'data-fragment-index' ) ) {
  780. el.setAttribute( 'data-fragment-index', idx );
  781. }
  782. } );
  783. a.sort( function( l, r ) {
  784. return l.getAttribute( 'data-fragment-index' ) - r.getAttribute( 'data-fragment-index');
  785. } );
  786. return a;
  787. }
  788. /**
  789. * Applies JavaScript-controlled layout rules to the
  790. * presentation.
  791. */
  792. function layout() {
  793. if( dom.wrapper && !isPrintingPDF() ) {
  794. // Available space to scale within
  795. var availableWidth = dom.wrapper.offsetWidth,
  796. availableHeight = dom.wrapper.offsetHeight;
  797. // Reduce available space by margin
  798. availableWidth -= ( availableHeight * config.margin );
  799. availableHeight -= ( availableHeight * config.margin );
  800. // Dimensions of the content
  801. var slideWidth = config.width,
  802. slideHeight = config.height,
  803. slidePadding = 20; // TODO Dig this out of DOM
  804. // Layout the contents of the slides
  805. layoutSlideContents( config.width, config.height, slidePadding );
  806. // Slide width may be a percentage of available width
  807. if( typeof slideWidth === 'string' && /%$/.test( slideWidth ) ) {
  808. slideWidth = parseInt( slideWidth, 10 ) / 100 * availableWidth;
  809. }
  810. // Slide height may be a percentage of available height
  811. if( typeof slideHeight === 'string' && /%$/.test( slideHeight ) ) {
  812. slideHeight = parseInt( slideHeight, 10 ) / 100 * availableHeight;
  813. }
  814. dom.slides.style.width = slideWidth + 'px';
  815. dom.slides.style.height = slideHeight + 'px';
  816. // Determine scale of content to fit within available space
  817. scale = Math.min( availableWidth / slideWidth, availableHeight / slideHeight );
  818. // Respect max/min scale settings
  819. scale = Math.max( scale, config.minScale );
  820. scale = Math.min( scale, config.maxScale );
  821. // Prefer applying scale via zoom since Chrome blurs scaled content
  822. // with nested transforms
  823. if( typeof dom.slides.style.zoom !== 'undefined' && !navigator.userAgent.match( /(iphone|ipod|ipad|android)/gi ) ) {
  824. dom.slides.style.zoom = scale;
  825. }
  826. // Apply scale transform as a fallback
  827. else {
  828. transformElement( dom.slides, 'translate(-50%, -50%) scale('+ scale +') translate(50%, 50%)' );
  829. }
  830. // Select all slides, vertical and horizontal
  831. var slides = toArray( document.querySelectorAll( SLIDES_SELECTOR ) );
  832. for( var i = 0, len = slides.length; i < len; i++ ) {
  833. var slide = slides[ i ];
  834. // Don't bother updating invisible slides
  835. if( slide.style.display === 'none' ) {
  836. continue;
  837. }
  838. if( config.center || slide.classList.contains( 'center' ) ) {
  839. // Vertical stacks are not centred since their section
  840. // children will be
  841. if( slide.classList.contains( 'stack' ) ) {
  842. slide.style.top = 0;
  843. }
  844. else {
  845. slide.style.top = Math.max( - ( getAbsoluteHeight( slide ) / 2 ) - slidePadding, -slideHeight / 2 ) + 'px';
  846. }
  847. }
  848. else {
  849. slide.style.top = '';
  850. }
  851. }
  852. updateProgress();
  853. updateParallax();
  854. }
  855. }
  856. /**
  857. * Applies layout logic to the contents of all slides in
  858. * the presentation.
  859. */
  860. function layoutSlideContents( width, height, padding ) {
  861. // Handle sizing of elements with the 'stretch' class
  862. toArray( dom.slides.querySelectorAll( 'section > .stretch' ) ).forEach( function( element ) {
  863. // Determine how much vertical space we can use
  864. var remainingHeight = getRemainingHeight( element, ( height - ( padding * 2 ) ) );
  865. // Consider the aspect ratio of media elements
  866. if( /(img|video)/gi.test( element.nodeName ) ) {
  867. var nw = element.naturalWidth || element.videoWidth,
  868. nh = element.naturalHeight || element.videoHeight;
  869. var es = Math.min( width / nw, remainingHeight / nh );
  870. element.style.width = ( nw * es ) + 'px';
  871. element.style.height = ( nh * es ) + 'px';
  872. }
  873. else {
  874. element.style.width = width + 'px';
  875. element.style.height = remainingHeight + 'px';
  876. }
  877. } );
  878. }
  879. /**
  880. * Stores the vertical index of a stack so that the same
  881. * vertical slide can be selected when navigating to and
  882. * from the stack.
  883. *
  884. * @param {HTMLElement} stack The vertical stack element
  885. * @param {int} v Index to memorize
  886. */
  887. function setPreviousVerticalIndex( stack, v ) {
  888. if( typeof stack === 'object' && typeof stack.setAttribute === 'function' ) {
  889. stack.setAttribute( 'data-previous-indexv', v || 0 );
  890. }
  891. }
  892. /**
  893. * Retrieves the vertical index which was stored using
  894. * #setPreviousVerticalIndex() or 0 if no previous index
  895. * exists.
  896. *
  897. * @param {HTMLElement} stack The vertical stack element
  898. */
  899. function getPreviousVerticalIndex( stack ) {
  900. if( typeof stack === 'object' && typeof stack.setAttribute === 'function' && stack.classList.contains( 'stack' ) ) {
  901. // Prefer manually defined start-indexv
  902. var attributeName = stack.hasAttribute( 'data-start-indexv' ) ? 'data-start-indexv' : 'data-previous-indexv';
  903. return parseInt( stack.getAttribute( attributeName ) || 0, 10 );
  904. }
  905. return 0;
  906. }
  907. /**
  908. * Displays the overview of slides (quick nav) by
  909. * scaling down and arranging all slide elements.
  910. *
  911. * Experimental feature, might be dropped if perf
  912. * can't be improved.
  913. */
  914. function activateOverview() {
  915. // Only proceed if enabled in config
  916. if( config.overview ) {
  917. // Don't auto-slide while in overview mode
  918. cancelAutoSlide();
  919. var wasActive = dom.wrapper.classList.contains( 'overview' );
  920. // Vary the depth of the overview based on screen size
  921. var depth = window.innerWidth < 400 ? 1000 : 2500;
  922. dom.wrapper.classList.add( 'overview' );
  923. dom.wrapper.classList.remove( 'overview-deactivating' );
  924. clearTimeout( activateOverviewTimeout );
  925. clearTimeout( deactivateOverviewTimeout );
  926. // Not the pretties solution, but need to let the overview
  927. // class apply first so that slides are measured accurately
  928. // before we can position them
  929. activateOverviewTimeout = setTimeout( function() {
  930. var horizontalSlides = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR );
  931. for( var i = 0, len1 = horizontalSlides.length; i < len1; i++ ) {
  932. var hslide = horizontalSlides[i],
  933. hoffset = config.rtl ? -105 : 105;
  934. hslide.setAttribute( 'data-index-h', i );
  935. // Apply CSS transform
  936. transformElement( hslide, 'translateZ(-'+ depth +'px) translate(' + ( ( i - indexh ) * hoffset ) + '%, 0%)' );
  937. if( hslide.classList.contains( 'stack' ) ) {
  938. var verticalSlides = hslide.querySelectorAll( 'section' );
  939. for( var j = 0, len2 = verticalSlides.length; j < len2; j++ ) {
  940. var verticalIndex = i === indexh ? indexv : getPreviousVerticalIndex( hslide );
  941. var vslide = verticalSlides[j];
  942. vslide.setAttribute( 'data-index-h', i );
  943. vslide.setAttribute( 'data-index-v', j );
  944. // Apply CSS transform
  945. transformElement( vslide, 'translate(0%, ' + ( ( j - verticalIndex ) * 105 ) + '%)' );
  946. // Navigate to this slide on click
  947. vslide.addEventListener( 'click', onOverviewSlideClicked, true );
  948. }
  949. }
  950. else {
  951. // Navigate to this slide on click
  952. hslide.addEventListener( 'click', onOverviewSlideClicked, true );
  953. }
  954. }
  955. updateSlidesVisibility();
  956. layout();
  957. if( !wasActive ) {
  958. // Notify observers of the overview showing
  959. dispatchEvent( 'overviewshown', {
  960. 'indexh': indexh,
  961. 'indexv': indexv,
  962. 'currentSlide': currentSlide
  963. } );
  964. }
  965. }, 10 );
  966. }
  967. }
  968. /**
  969. * Exits the slide overview and enters the currently
  970. * active slide.
  971. */
  972. function deactivateOverview() {
  973. // Only proceed if enabled in config
  974. if( config.overview ) {
  975. clearTimeout( activateOverviewTimeout );
  976. clearTimeout( deactivateOverviewTimeout );
  977. dom.wrapper.classList.remove( 'overview' );
  978. // Temporarily add a class so that transitions can do different things
  979. // depending on whether they are exiting/entering overview, or just
  980. // moving from slide to slide
  981. dom.wrapper.classList.add( 'overview-deactivating' );
  982. deactivateOverviewTimeout = setTimeout( function () {
  983. dom.wrapper.classList.remove( 'overview-deactivating' );
  984. }, 1 );
  985. // Select all slides
  986. toArray( document.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) {
  987. // Resets all transforms to use the external styles
  988. transformElement( slide, '' );
  989. slide.removeEventListener( 'click', onOverviewSlideClicked, true );
  990. } );
  991. slide( indexh, indexv );
  992. cueAutoSlide();
  993. // Notify observers of the overview hiding
  994. dispatchEvent( 'overviewhidden', {
  995. 'indexh': indexh,
  996. 'indexv': indexv,
  997. 'currentSlide': currentSlide
  998. } );
  999. }
  1000. }
  1001. /**
  1002. * Toggles the slide overview mode on and off.
  1003. *
  1004. * @param {Boolean} override Optional flag which overrides the
  1005. * toggle logic and forcibly sets the desired state. True means
  1006. * overview is open, false means it's closed.
  1007. */
  1008. function toggleOverview( override ) {
  1009. if( typeof override === 'boolean' ) {
  1010. override ? activateOverview() : deactivateOverview();
  1011. }
  1012. else {
  1013. isOverview() ? deactivateOverview() : activateOverview();
  1014. }
  1015. }
  1016. /**
  1017. * Checks if the overview is currently active.
  1018. *
  1019. * @return {Boolean} true if the overview is active,
  1020. * false otherwise
  1021. */
  1022. function isOverview() {
  1023. return dom.wrapper.classList.contains( 'overview' );
  1024. }
  1025. /**
  1026. * Checks if the current or specified slide is vertical
  1027. * (nested within another slide).
  1028. *
  1029. * @param {HTMLElement} slide [optional] The slide to check
  1030. * orientation of
  1031. */
  1032. function isVerticalSlide( slide ) {
  1033. // Prefer slide argument, otherwise use current slide
  1034. slide = slide ? slide : currentSlide;
  1035. return slide && slide.parentNode && !!slide.parentNode.nodeName.match( /section/i );
  1036. }
  1037. /**
  1038. * Handling the fullscreen functionality via the fullscreen API
  1039. *
  1040. * @see http://fullscreen.spec.whatwg.org/
  1041. * @see https://developer.mozilla.org/en-US/docs/DOM/Using_fullscreen_mode
  1042. */
  1043. function enterFullscreen() {
  1044. var element = document.body;
  1045. // Check which implementation is available
  1046. var requestMethod = element.requestFullScreen ||
  1047. element.webkitRequestFullscreen ||
  1048. element.webkitRequestFullScreen ||
  1049. element.mozRequestFullScreen ||
  1050. element.msRequestFullScreen;
  1051. if( requestMethod ) {
  1052. requestMethod.apply( element );
  1053. }
  1054. }
  1055. /**
  1056. * Enters the paused mode which fades everything on screen to
  1057. * black.
  1058. */
  1059. function pause() {
  1060. var wasPaused = dom.wrapper.classList.contains( 'paused' );
  1061. cancelAutoSlide();
  1062. dom.wrapper.classList.add( 'paused' );
  1063. if( wasPaused === false ) {
  1064. dispatchEvent( 'paused' );
  1065. }
  1066. }
  1067. /**
  1068. * Exits from the paused mode.
  1069. */
  1070. function resume() {
  1071. var wasPaused = dom.wrapper.classList.contains( 'paused' );
  1072. dom.wrapper.classList.remove( 'paused' );
  1073. cueAutoSlide();
  1074. if( wasPaused ) {
  1075. dispatchEvent( 'resumed' );
  1076. }
  1077. }
  1078. /**
  1079. * Toggles the paused mode on and off.
  1080. */
  1081. function togglePause() {
  1082. if( isPaused() ) {
  1083. resume();
  1084. }
  1085. else {
  1086. pause();
  1087. }
  1088. }
  1089. /**
  1090. * Checks if we are currently in the paused mode.
  1091. */
  1092. function isPaused() {
  1093. return dom.wrapper.classList.contains( 'paused' );
  1094. }
  1095. /**
  1096. * Steps from the current point in the presentation to the
  1097. * slide which matches the specified horizontal and vertical
  1098. * indices.
  1099. *
  1100. * @param {int} h Horizontal index of the target slide
  1101. * @param {int} v Vertical index of the target slide
  1102. * @param {int} f Optional index of a fragment within the
  1103. * target slide to activate
  1104. * @param {int} o Optional origin for use in multimaster environments
  1105. */
  1106. function slide( h, v, f, o ) {
  1107. // Remember where we were at before
  1108. previousSlide = currentSlide;
  1109. // Query all horizontal slides in the deck
  1110. var horizontalSlides = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR );
  1111. // If no vertical index is specified and the upcoming slide is a
  1112. // stack, resume at its previous vertical index
  1113. if( v === undefined ) {
  1114. v = getPreviousVerticalIndex( horizontalSlides[ h ] );
  1115. }
  1116. // If we were on a vertical stack, remember what vertical index
  1117. // it was on so we can resume at the same position when returning
  1118. if( previousSlide && previousSlide.parentNode && previousSlide.parentNode.classList.contains( 'stack' ) ) {
  1119. setPreviousVerticalIndex( previousSlide.parentNode, indexv );
  1120. }
  1121. // Remember the state before this slide
  1122. var stateBefore = state.concat();
  1123. // Reset the state array
  1124. state.length = 0;
  1125. var indexhBefore = indexh || 0,
  1126. indexvBefore = indexv || 0;
  1127. // Activate and transition to the new slide
  1128. indexh = updateSlides( HORIZONTAL_SLIDES_SELECTOR, h === undefined ? indexh : h );
  1129. indexv = updateSlides( VERTICAL_SLIDES_SELECTOR, v === undefined ? indexv : v );
  1130. // Update the visibility of slides now that the indices have changed
  1131. updateSlidesVisibility();
  1132. layout();
  1133. // Apply the new state
  1134. stateLoop: for( var i = 0, len = state.length; i < len; i++ ) {
  1135. // Check if this state existed on the previous slide. If it
  1136. // did, we will avoid adding it repeatedly
  1137. for( var j = 0; j < stateBefore.length; j++ ) {
  1138. if( stateBefore[j] === state[i] ) {
  1139. stateBefore.splice( j, 1 );
  1140. continue stateLoop;
  1141. }
  1142. }
  1143. document.documentElement.classList.add( state[i] );
  1144. // Dispatch custom event matching the state's name
  1145. dispatchEvent( state[i] );
  1146. }
  1147. // Clean up the remains of the previous state
  1148. while( stateBefore.length ) {
  1149. document.documentElement.classList.remove( stateBefore.pop() );
  1150. }
  1151. // If the overview is active, re-activate it to update positions
  1152. if( isOverview() ) {
  1153. activateOverview();
  1154. }
  1155. // Find the current horizontal slide and any possible vertical slides
  1156. // within it
  1157. var currentHorizontalSlide = horizontalSlides[ indexh ],
  1158. currentVerticalSlides = currentHorizontalSlide.querySelectorAll( 'section' );
  1159. // Store references to the previous and current slides
  1160. currentSlide = currentVerticalSlides[ indexv ] || currentHorizontalSlide;
  1161. // Show fragment, if specified
  1162. if( typeof f !== 'undefined' ) {
  1163. var fragments = sortFragments( currentSlide.querySelectorAll( '.fragment' ) );
  1164. toArray( fragments ).forEach( function( fragment, indexf ) {
  1165. if( indexf < f ) {
  1166. fragment.classList.add( 'visible' );
  1167. }
  1168. else {
  1169. fragment.classList.remove( 'visible' );
  1170. }
  1171. } );
  1172. }
  1173. // Dispatch an event if the slide changed
  1174. var slideChanged = ( indexh !== indexhBefore || indexv !== indexvBefore );
  1175. if( slideChanged ) {
  1176. dispatchEvent( 'slidechanged', {
  1177. 'indexh': indexh,
  1178. 'indexv': indexv,
  1179. 'previousSlide': previousSlide,
  1180. 'currentSlide': currentSlide,
  1181. 'origin': o
  1182. } );
  1183. }
  1184. else {
  1185. // Ensure that the previous slide is never the same as the current
  1186. previousSlide = null;
  1187. }
  1188. // Solves an edge case where the previous slide maintains the
  1189. // 'present' class when navigating between adjacent vertical
  1190. // stacks
  1191. if( previousSlide ) {
  1192. previousSlide.classList.remove( 'present' );
  1193. // Reset all slides upon navigate to home
  1194. // Issue: #285
  1195. if ( document.querySelector( HOME_SLIDE_SELECTOR ).classList.contains( 'present' ) ) {
  1196. // Launch async task
  1197. setTimeout( function () {
  1198. var slides = toArray( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.stack') ), i;
  1199. for( i in slides ) {
  1200. if( slides[i] ) {
  1201. // Reset stack
  1202. setPreviousVerticalIndex( slides[i], 0 );
  1203. }
  1204. }
  1205. }, 0 );
  1206. }
  1207. }
  1208. // Handle embedded content
  1209. if( slideChanged ) {
  1210. stopEmbeddedContent( previousSlide );
  1211. startEmbeddedContent( currentSlide );
  1212. }
  1213. updateControls();
  1214. updateProgress();
  1215. updateBackground();
  1216. updateParallax();
  1217. // Update the URL hash
  1218. writeURL();
  1219. cueAutoSlide();
  1220. }
  1221. /**
  1222. * Syncs the presentation with the current DOM. Useful
  1223. * when new slides or control elements are added or when
  1224. * the configuration has changed.
  1225. */
  1226. function sync() {
  1227. // Subscribe to input
  1228. removeEventListeners();
  1229. addEventListeners();
  1230. // Force a layout to make sure the current config is accounted for
  1231. layout();
  1232. // Reflect the current autoSlide value
  1233. autoSlide = config.autoSlide;
  1234. // Start auto-sliding if it's enabled
  1235. cueAutoSlide();
  1236. // Re-create the slide backgrounds
  1237. createBackgrounds();
  1238. updateControls();
  1239. updateProgress();
  1240. updateBackground();
  1241. }
  1242. /**
  1243. * Updates one dimension of slides by showing the slide
  1244. * with the specified index.
  1245. *
  1246. * @param {String} selector A CSS selector that will fetch
  1247. * the group of slides we are working with
  1248. * @param {Number} index The index of the slide that should be
  1249. * shown
  1250. *
  1251. * @return {Number} The index of the slide that is now shown,
  1252. * might differ from the passed in index if it was out of
  1253. * bounds.
  1254. */
  1255. function updateSlides( selector, index ) {
  1256. // Select all slides and convert the NodeList result to
  1257. // an array
  1258. var slides = toArray( document.querySelectorAll( selector ) ),
  1259. slidesLength = slides.length;
  1260. if( slidesLength ) {
  1261. // Should the index loop?
  1262. if( config.loop ) {
  1263. index %= slidesLength;
  1264. if( index < 0 ) {
  1265. index = slidesLength + index;
  1266. }
  1267. }
  1268. // Enforce max and minimum index bounds
  1269. index = Math.max( Math.min( index, slidesLength - 1 ), 0 );
  1270. for( var i = 0; i < slidesLength; i++ ) {
  1271. var element = slides[i];
  1272. var reverse = config.rtl && !isVerticalSlide( element );
  1273. element.classList.remove( 'past' );
  1274. element.classList.remove( 'present' );
  1275. element.classList.remove( 'future' );
  1276. // http://www.w3.org/html/wg/drafts/html/master/editing.html#the-hidden-attribute
  1277. element.setAttribute( 'hidden', '' );
  1278. if( i < index ) {
  1279. // Any element previous to index is given the 'past' class
  1280. element.classList.add( reverse ? 'future' : 'past' );
  1281. }
  1282. else if( i > index ) {
  1283. // Any element subsequent to index is given the 'future' class
  1284. element.classList.add( reverse ? 'past' : 'future' );
  1285. var fragments = toArray( element.querySelectorAll( '.fragment.visible' ) );
  1286. // No fragments in future slides should be visible ahead of time
  1287. while( fragments.length ) {
  1288. fragments.pop().classList.remove( 'visible' );
  1289. }
  1290. }
  1291. // If this element contains vertical slides
  1292. if( element.querySelector( 'section' ) ) {
  1293. element.classList.add( 'stack' );
  1294. }
  1295. }
  1296. // Mark the current slide as present
  1297. slides[index].classList.add( 'present' );
  1298. slides[index].removeAttribute( 'hidden' );
  1299. // If this slide has a state associated with it, add it
  1300. // onto the current state of the deck
  1301. var slideState = slides[index].getAttribute( 'data-state' );
  1302. if( slideState ) {
  1303. state = state.concat( slideState.split( ' ' ) );
  1304. }
  1305. }
  1306. else {
  1307. // Since there are no slides we can't be anywhere beyond the
  1308. // zeroth index
  1309. index = 0;
  1310. }
  1311. return index;
  1312. }
  1313. /**
  1314. * Optimization method; hide all slides that are far away
  1315. * from the present slide.
  1316. */
  1317. function updateSlidesVisibility() {
  1318. // Select all slides and convert the NodeList result to
  1319. // an array
  1320. var horizontalSlides = toArray( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ),
  1321. horizontalSlidesLength = horizontalSlides.length,
  1322. distanceX,
  1323. distanceY;
  1324. if( horizontalSlidesLength ) {
  1325. // The number of steps away from the present slide that will
  1326. // be visible
  1327. var viewDistance = isOverview() ? 10 : config.viewDistance;
  1328. // Limit view distance on weaker devices
  1329. if( isMobileDevice ) {
  1330. viewDistance = isOverview() ? 6 : 1;
  1331. }
  1332. for( var x = 0; x < horizontalSlidesLength; x++ ) {
  1333. var horizontalSlide = horizontalSlides[x];
  1334. var verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) ),
  1335. verticalSlidesLength = verticalSlides.length;
  1336. // Loops so that it measures 1 between the first and last slides
  1337. distanceX = Math.abs( ( indexh - x ) % ( horizontalSlidesLength - viewDistance ) ) || 0;
  1338. // Show the horizontal slide if it's within the view distance
  1339. horizontalSlide.style.display = distanceX > viewDistance ? 'none' : 'block';
  1340. if( verticalSlidesLength ) {
  1341. var oy = getPreviousVerticalIndex( horizontalSlide );
  1342. for( var y = 0; y < verticalSlidesLength; y++ ) {
  1343. var verticalSlide = verticalSlides[y];
  1344. distanceY = x === indexh ? Math.abs( indexv - y ) : Math.abs( y - oy );
  1345. verticalSlide.style.display = ( distanceX + distanceY ) > viewDistance ? 'none' : 'block';
  1346. }
  1347. }
  1348. }
  1349. }
  1350. }
  1351. /**
  1352. * Updates the progress bar to reflect the current slide.
  1353. */
  1354. function updateProgress() {
  1355. // Update progress if enabled
  1356. if( config.progress && dom.progress ) {
  1357. var horizontalSlides = toArray( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );
  1358. // The number of past and total slides
  1359. var totalCount = document.querySelectorAll( SLIDES_SELECTOR + ':not(.stack)' ).length;
  1360. var pastCount = 0;
  1361. // Step through all slides and count the past ones
  1362. mainLoop: for( var i = 0; i < horizontalSlides.length; i++ ) {
  1363. var horizontalSlide = horizontalSlides[i];
  1364. var verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );
  1365. for( var j = 0; j < verticalSlides.length; j++ ) {
  1366. // Stop as soon as we arrive at the present
  1367. if( verticalSlides[j].classList.contains( 'present' ) ) {
  1368. break mainLoop;
  1369. }
  1370. pastCount++;
  1371. }
  1372. // Stop as soon as we arrive at the present
  1373. if( horizontalSlide.classList.contains( 'present' ) ) {
  1374. break;
  1375. }
  1376. // Don't count the wrapping section for vertical slides
  1377. if( horizontalSlide.classList.contains( 'stack' ) === false ) {
  1378. pastCount++;
  1379. }
  1380. }
  1381. dom.progressbar.style.width = ( pastCount / ( totalCount - 1 ) ) * window.innerWidth + 'px';
  1382. }
  1383. }
  1384. /**
  1385. * Updates the state of all control/navigation arrows.
  1386. */
  1387. function updateControls() {
  1388. var routes = availableRoutes();
  1389. var fragments = availableFragments();
  1390. // Remove the 'enabled' class from all directions
  1391. dom.controlsLeft.concat( dom.controlsRight )
  1392. .concat( dom.controlsUp )
  1393. .concat( dom.controlsDown )
  1394. .concat( dom.controlsPrev )
  1395. .concat( dom.controlsNext ).forEach( function( node ) {
  1396. node.classList.remove( 'enabled' );
  1397. node.classList.remove( 'fragmented' );
  1398. } );
  1399. // Add the 'enabled' class to the available routes
  1400. if( routes.left ) dom.controlsLeft.forEach( function( el ) { el.classList.add( 'enabled' ); } );
  1401. if( routes.right ) dom.controlsRight.forEach( function( el ) { el.classList.add( 'enabled' ); } );
  1402. if( routes.up ) dom.controlsUp.forEach( function( el ) { el.classList.add( 'enabled' ); } );
  1403. if( routes.down ) dom.controlsDown.forEach( function( el ) { el.classList.add( 'enabled' ); } );
  1404. // Prev/next buttons
  1405. if( routes.left || routes.up ) dom.controlsPrev.forEach( function( el ) { el.classList.add( 'enabled' ); } );
  1406. if( routes.right || routes.down ) dom.controlsNext.forEach( function( el ) { el.classList.add( 'enabled' ); } );
  1407. // Highlight fragment directions
  1408. if( currentSlide ) {
  1409. // Always apply fragment decorator to prev/next buttons
  1410. if( fragments.prev ) dom.controlsPrev.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );
  1411. if( fragments.next ) dom.controlsNext.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );
  1412. // Apply fragment decorators to directional buttons based on
  1413. // what slide axis they are in
  1414. if( isVerticalSlide( currentSlide ) ) {
  1415. if( fragments.prev ) dom.controlsUp.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );
  1416. if( fragments.next ) dom.controlsDown.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );
  1417. }
  1418. else {
  1419. if( fragments.prev ) dom.controlsLeft.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );
  1420. if( fragments.next ) dom.controlsRight.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );
  1421. }
  1422. }
  1423. }
  1424. /**
  1425. * Updates the background elements to reflect the current
  1426. * slide.
  1427. */
  1428. function updateBackground() {
  1429. // Update the classes of all backgrounds to match the
  1430. // states of their slides (past/present/future)
  1431. toArray( dom.background.childNodes ).forEach( function( backgroundh, h ) {
  1432. // Reverse past/future classes when in RTL mode
  1433. var horizontalPast = config.rtl ? 'future' : 'past',
  1434. horizontalFuture = config.rtl ? 'past' : 'future';
  1435. backgroundh.className = 'slide-background ' + ( h < indexh ? horizontalPast : h > indexh ? horizontalFuture : 'present' );
  1436. toArray( backgroundh.childNodes ).forEach( function( backgroundv, v ) {
  1437. backgroundv.className = 'slide-background ' + ( v < indexv ? 'past' : v > indexv ? 'future' : 'present' );
  1438. } );
  1439. } );
  1440. // Allow the first background to apply without transition
  1441. setTimeout( function() {
  1442. dom.background.classList.remove( 'no-transition' );
  1443. }, 1 );
  1444. }
  1445. /**
  1446. * Updates the position of the parallax background based
  1447. * on the current slide index.
  1448. */
  1449. function updateParallax() {
  1450. if( config.parallaxBackgroundImage ) {
  1451. var horizontalSlides = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ),
  1452. verticalSlides = document.querySelectorAll( VERTICAL_SLIDES_SELECTOR );
  1453. var backgroundSize = dom.background.style.backgroundSize.split( ' ' ),
  1454. backgroundWidth, backgroundHeight;
  1455. if( backgroundSize.length === 1 ) {
  1456. backgroundWidth = backgroundHeight = parseInt( backgroundSize[0], 10 );
  1457. }
  1458. else {
  1459. backgroundWidth = parseInt( backgroundSize[0], 10 );
  1460. backgroundHeight = parseInt( backgroundSize[1], 10 );
  1461. }
  1462. var slideWidth = dom.background.offsetWidth;
  1463. var horizontalSlideCount = horizontalSlides.length;
  1464. var horizontalOffset = -( backgroundWidth - slideWidth ) / ( horizontalSlideCount-1 ) * indexh;
  1465. var slideHeight = dom.background.offsetHeight;
  1466. var verticalSlideCount = verticalSlides.length;
  1467. var verticalOffset = verticalSlideCount > 0 ? -( backgroundHeight - slideHeight ) / ( verticalSlideCount-1 ) * indexv : 0;
  1468. dom.background.style.backgroundPosition = horizontalOffset + 'px ' + verticalOffset + 'px';
  1469. }
  1470. }
  1471. /**
  1472. * Determine what available routes there are for navigation.
  1473. *
  1474. * @return {Object} containing four booleans: left/right/up/down
  1475. */
  1476. function availableRoutes() {
  1477. var horizontalSlides = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ),
  1478. verticalSlides = document.querySelectorAll( VERTICAL_SLIDES_SELECTOR );
  1479. var routes = {
  1480. left: indexh > 0 || config.loop,
  1481. right: indexh < horizontalSlides.length - 1 || config.loop,
  1482. up: indexv > 0,
  1483. down: indexv < verticalSlides.length - 1
  1484. };
  1485. // reverse horizontal controls for rtl
  1486. if( config.rtl ) {
  1487. var left = routes.left;
  1488. routes.left = routes.right;
  1489. routes.right = left;
  1490. }
  1491. return routes;
  1492. }
  1493. /**
  1494. * Returns an object describing the available fragment
  1495. * directions.
  1496. *
  1497. * @return {Object} two boolean properties: prev/next
  1498. */
  1499. function availableFragments() {
  1500. if( currentSlide && config.fragments ) {
  1501. var fragments = currentSlide.querySelectorAll( '.fragment' );
  1502. var hiddenFragments = currentSlide.querySelectorAll( '.fragment:not(.visible)' );
  1503. return {
  1504. prev: fragments.length - hiddenFragments.length > 0,
  1505. next: !!hiddenFragments.length
  1506. };
  1507. }
  1508. else {
  1509. return { prev: false, next: false };
  1510. }
  1511. }
  1512. /**
  1513. * Start playback of any embedded content inside of
  1514. * the targeted slide.
  1515. */
  1516. function startEmbeddedContent( slide ) {
  1517. if( slide ) {
  1518. // HTML5 media elements
  1519. toArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {
  1520. if( el.hasAttribute( 'data-autoplay' ) ) {
  1521. el.play();
  1522. }
  1523. } );
  1524. // iframe embeds
  1525. toArray( slide.querySelectorAll( 'iframe' ) ).forEach( function( el ) {
  1526. el.contentWindow.postMessage( 'slide:start', '*' );
  1527. });
  1528. // YouTube embeds
  1529. toArray( slide.querySelectorAll( 'iframe[src*="youtube.com/embed/"]' ) ).forEach( function( el ) {
  1530. if( el.hasAttribute( 'data-autoplay' ) ) {
  1531. el.contentWindow.postMessage( '{"event":"command","func":"playVideo","args":""}', '*' );
  1532. }
  1533. });
  1534. }
  1535. }
  1536. /**
  1537. * Stop playback of any embedded content inside of
  1538. * the targeted slide.
  1539. */
  1540. function stopEmbeddedContent( slide ) {
  1541. if( slide ) {
  1542. // HTML5 media elements
  1543. toArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {
  1544. if( !el.hasAttribute( 'data-ignore' ) ) {
  1545. el.pause();
  1546. }
  1547. } );
  1548. // iframe embeds
  1549. toArray( slide.querySelectorAll( 'iframe' ) ).forEach( function( el ) {
  1550. el.contentWindow.postMessage( 'slide:stop', '*' );
  1551. });
  1552. // YouTube embeds
  1553. toArray( slide.querySelectorAll( 'iframe[src*="youtube.com/embed/"]' ) ).forEach( function( el ) {
  1554. if( !el.hasAttribute( 'data-ignore' ) && typeof el.contentWindow.postMessage === 'function' ) {
  1555. el.contentWindow.postMessage( '{"event":"command","func":"pauseVideo","args":""}', '*' );
  1556. }
  1557. });
  1558. }
  1559. }
  1560. /**
  1561. * Reads the current URL (hash) and navigates accordingly.
  1562. */
  1563. function readURL() {
  1564. var hash = window.location.hash;
  1565. // Attempt to parse the hash as either an index or name
  1566. var bits = hash.slice( 2 ).split( '/' ),
  1567. name = hash.replace( /#|\//gi, '' );
  1568. // If the first bit is invalid and there is a name we can
  1569. // assume that this is a named link
  1570. if( isNaN( parseInt( bits[0], 10 ) ) && name.length ) {
  1571. // Find the slide with the specified name
  1572. var element = document.querySelector( '#' + name );
  1573. if( element ) {
  1574. // Find the position of the named slide and navigate to it
  1575. var indices = Reveal.getIndices( element );
  1576. slide( indices.h, indices.v );
  1577. }
  1578. // If the slide doesn't exist, navigate to the current slide
  1579. else {
  1580. slide( indexh || 0, indexv || 0 );
  1581. }
  1582. }
  1583. else {
  1584. // Read the index components of the hash
  1585. var h = parseInt( bits[0], 10 ) || 0,
  1586. v = parseInt( bits[1], 10 ) || 0;
  1587. if( h !== indexh || v !== indexv ) {
  1588. slide( h, v );
  1589. }
  1590. }
  1591. }
  1592. /**
  1593. * Updates the page URL (hash) to reflect the current
  1594. * state.
  1595. *
  1596. * @param {Number} delay The time in ms to wait before
  1597. * writing the hash
  1598. */
  1599. function writeURL( delay ) {
  1600. if( config.history ) {
  1601. // Make sure there's never more than one timeout running
  1602. clearTimeout( writeURLTimeout );
  1603. // If a delay is specified, timeout this call
  1604. if( typeof delay === 'number' ) {
  1605. writeURLTimeout = setTimeout( writeURL, delay );
  1606. }
  1607. else {
  1608. var url = '/';
  1609. // If the current slide has an ID, use that as a named link
  1610. if( currentSlide && typeof currentSlide.getAttribute( 'id' ) === 'string' ) {
  1611. url = '/' + currentSlide.getAttribute( 'id' );
  1612. }
  1613. // Otherwise use the /h/v index
  1614. else {
  1615. if( indexh > 0 || indexv > 0 ) url += indexh;
  1616. if( indexv > 0 ) url += '/' + indexv;
  1617. }
  1618. window.location.hash = url;
  1619. }
  1620. }
  1621. }
  1622. /**
  1623. * Retrieves the h/v location of the current, or specified,
  1624. * slide.
  1625. *
  1626. * @param {HTMLElement} slide If specified, the returned
  1627. * index will be for this slide rather than the currently
  1628. * active one
  1629. *
  1630. * @return {Object} { h: <int>, v: <int>, f: <int> }
  1631. */
  1632. function getIndices( slide ) {
  1633. // By default, return the current indices
  1634. var h = indexh,
  1635. v = indexv,
  1636. f;
  1637. // If a slide is specified, return the indices of that slide
  1638. if( slide ) {
  1639. var isVertical = isVerticalSlide( slide );
  1640. var slideh = isVertical ? slide.parentNode : slide;
  1641. // Select all horizontal slides
  1642. var horizontalSlides = toArray( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );
  1643. // Now that we know which the horizontal slide is, get its index
  1644. h = Math.max( horizontalSlides.indexOf( slideh ), 0 );
  1645. // If this is a vertical slide, grab the vertical index
  1646. if( isVertical ) {
  1647. v = Math.max( toArray( slide.parentNode.querySelectorAll( 'section' ) ).indexOf( slide ), 0 );
  1648. }
  1649. }
  1650. if( !slide && currentSlide ) {
  1651. var hasFragments = currentSlide.querySelectorAll( '.fragment' ).length > 0;
  1652. if( hasFragments ) {
  1653. var visibleFragments = currentSlide.querySelectorAll( '.fragment.visible' );
  1654. f = visibleFragments.length;
  1655. }
  1656. }
  1657. return { h: h, v: v, f: f };
  1658. }
  1659. /**
  1660. * Navigate to the next slide fragment.
  1661. *
  1662. * @return {Boolean} true if there was a next fragment,
  1663. * false otherwise
  1664. */
  1665. function nextFragment() {
  1666. if( currentSlide && config.fragments ) {
  1667. var fragments = sortFragments( currentSlide.querySelectorAll( '.fragment:not(.visible)' ) );
  1668. if( fragments.length ) {
  1669. // Find the index of the next fragment
  1670. var index = fragments[0].getAttribute( 'data-fragment-index' );
  1671. // Find all fragments with the same index
  1672. fragments = currentSlide.querySelectorAll( '.fragment[data-fragment-index="'+ index +'"]' );
  1673. toArray( fragments ).forEach( function( element ) {
  1674. element.classList.add( 'visible' );
  1675. } );
  1676. // Notify subscribers of the change
  1677. dispatchEvent( 'fragmentshown', { fragment: fragments[0], fragments: fragments } );
  1678. updateControls();
  1679. return true;
  1680. }
  1681. }
  1682. return false;
  1683. }
  1684. /**
  1685. * Navigate to the previous slide fragment.
  1686. *
  1687. * @return {Boolean} true if there was a previous fragment,
  1688. * false otherwise
  1689. */
  1690. function previousFragment() {
  1691. if( currentSlide && config.fragments ) {
  1692. var fragments = sortFragments( currentSlide.querySelectorAll( '.fragment.visible' ) );
  1693. if( fragments.length ) {
  1694. // Find the index of the previous fragment
  1695. var index = fragments[ fragments.length - 1 ].getAttribute( 'data-fragment-index' );
  1696. // Find all fragments with the same index
  1697. fragments = currentSlide.querySelectorAll( '.fragment[data-fragment-index="'+ index +'"]' );
  1698. toArray( fragments ).forEach( function( f ) {
  1699. f.classList.remove( 'visible' );
  1700. } );
  1701. // Notify subscribers of the change
  1702. dispatchEvent( 'fragmenthidden', { fragment: fragments[0], fragments: fragments } );
  1703. updateControls();
  1704. return true;
  1705. }
  1706. }
  1707. return false;
  1708. }
  1709. /**
  1710. * Cues a new automated slide if enabled in the config.
  1711. */
  1712. function cueAutoSlide() {
  1713. cancelAutoSlide();
  1714. if( currentSlide ) {
  1715. // If the current slide has a data-autoslide use that,
  1716. // otherwise use the config.autoSlide value
  1717. var slideAutoSlide = currentSlide.getAttribute( 'data-autoslide' );
  1718. if( slideAutoSlide ) {
  1719. autoSlide = parseInt( slideAutoSlide, 10 );
  1720. }
  1721. else {
  1722. autoSlide = config.autoSlide;
  1723. }
  1724. // Cue the next auto-slide if:
  1725. // - There is an autoSlide value
  1726. // - Auto-sliding isn't paused by the user
  1727. // - The presentation isn't paused
  1728. // - The overview isn't active
  1729. // - The presentation isn't over
  1730. if( autoSlide && !autoSlidePaused && !isPaused() && !isOverview() && ( !Reveal.isLastSlide() || config.loop === true ) ) {
  1731. autoSlideTimeout = setTimeout( navigateNext, autoSlide );
  1732. autoSlideStartTime = Date.now();
  1733. }
  1734. if( autoSlidePlayer ) {
  1735. autoSlidePlayer.setPlaying( autoSlideTimeout !== -1 );
  1736. }
  1737. }
  1738. }
  1739. /**
  1740. * Cancels any ongoing request to auto-slide.
  1741. */
  1742. function cancelAutoSlide() {
  1743. clearTimeout( autoSlideTimeout );
  1744. autoSlideTimeout = -1;
  1745. }
  1746. function pauseAutoSlide() {
  1747. autoSlidePaused = true;
  1748. clearTimeout( autoSlideTimeout );
  1749. if( autoSlidePlayer ) {
  1750. autoSlidePlayer.setPlaying( false );
  1751. }
  1752. }
  1753. function resumeAutoSlide() {
  1754. autoSlidePaused = false;
  1755. cueAutoSlide();
  1756. }
  1757. function navigateLeft() {
  1758. // Reverse for RTL
  1759. if( config.rtl ) {
  1760. if( ( isOverview() || nextFragment() === false ) && availableRoutes().left ) {
  1761. slide( indexh + 1 );
  1762. }
  1763. }
  1764. // Normal navigation
  1765. else if( ( isOverview() || previousFragment() === false ) && availableRoutes().left ) {
  1766. slide( indexh - 1 );
  1767. }
  1768. }
  1769. function navigateRight() {
  1770. // Reverse for RTL
  1771. if( config.rtl ) {
  1772. if( ( isOverview() || previousFragment() === false ) && availableRoutes().right ) {
  1773. slide( indexh - 1 );
  1774. }
  1775. }
  1776. // Normal navigation
  1777. else if( ( isOverview() || nextFragment() === false ) && availableRoutes().right ) {
  1778. slide( indexh + 1 );
  1779. }
  1780. }
  1781. function navigateUp() {
  1782. // Prioritize hiding fragments
  1783. if( ( isOverview() || previousFragment() === false ) && availableRoutes().up ) {
  1784. slide( indexh, indexv - 1 );
  1785. }
  1786. }
  1787. function navigateDown() {
  1788. // Prioritize revealing fragments
  1789. if( ( isOverview() || nextFragment() === false ) && availableRoutes().down ) {
  1790. slide( indexh, indexv + 1 );
  1791. }
  1792. }
  1793. /**
  1794. * Navigates backwards, prioritized in the following order:
  1795. * 1) Previous fragment
  1796. * 2) Previous vertical slide
  1797. * 3) Previous horizontal slide
  1798. */
  1799. function navigatePrev() {
  1800. // Prioritize revealing fragments
  1801. if( previousFragment() === false ) {
  1802. if( availableRoutes().up ) {
  1803. navigateUp();
  1804. }
  1805. else {
  1806. // Fetch the previous horizontal slide, if there is one
  1807. var previousSlide = document.querySelector( HORIZONTAL_SLIDES_SELECTOR + '.past:nth-child(' + indexh + ')' );
  1808. if( previousSlide ) {
  1809. var v = ( previousSlide.querySelectorAll( 'section' ).length - 1 ) || undefined;
  1810. var h = indexh - 1;
  1811. slide( h, v );
  1812. }
  1813. }
  1814. }
  1815. }
  1816. /**
  1817. * Same as #navigatePrev() but navigates forwards.
  1818. */
  1819. function navigateNext() {
  1820. // Prioritize revealing fragments
  1821. if( nextFragment() === false ) {
  1822. availableRoutes().down ? navigateDown() : navigateRight();
  1823. }
  1824. // If auto-sliding is enabled we need to cue up
  1825. // another timeout
  1826. cueAutoSlide();
  1827. }
  1828. // --------------------------------------------------------------------//
  1829. // ----------------------------- EVENTS -------------------------------//
  1830. // --------------------------------------------------------------------//
  1831. /**
  1832. * Called by all event handlers that are based on user
  1833. * input.
  1834. */
  1835. function onUserInput( event ) {
  1836. if( config.autoSlideStoppable ) {
  1837. pauseAutoSlide();
  1838. }
  1839. }
  1840. /**
  1841. * Handler for the document level 'keydown' event.
  1842. */
  1843. function onDocumentKeyDown( event ) {
  1844. onUserInput( event );
  1845. // Check if there's a focused element that could be using
  1846. // the keyboard
  1847. var activeElement = document.activeElement;
  1848. var hasFocus = !!( document.activeElement && ( document.activeElement.type || document.activeElement.href || document.activeElement.contentEditable !== 'inherit' ) );
  1849. // Disregard the event if there's a focused element or a
  1850. // keyboard modifier key is present
  1851. if( hasFocus || (event.shiftKey && event.keyCode !== 32) || event.altKey || event.ctrlKey || event.metaKey ) return;
  1852. // While paused only allow "unpausing" keyboard events (b and .)
  1853. if( isPaused() && [66,190,191].indexOf( event.keyCode ) === -1 ) {
  1854. return false;
  1855. }
  1856. var triggered = false;
  1857. // 1. User defined key bindings
  1858. if( typeof config.keyboard === 'object' ) {
  1859. for( var key in config.keyboard ) {
  1860. // Check if this binding matches the pressed key
  1861. if( parseInt( key, 10 ) === event.keyCode ) {
  1862. var value = config.keyboard[ key ];
  1863. // Callback function
  1864. if( typeof value === 'function' ) {
  1865. value.apply( null, [ event ] );
  1866. }
  1867. // String shortcuts to reveal.js API
  1868. else if( typeof value === 'string' && typeof Reveal[ value ] === 'function' ) {
  1869. Reveal[ value ].call();
  1870. }
  1871. triggered = true;
  1872. }
  1873. }
  1874. }
  1875. // 2. System defined key bindings
  1876. if( triggered === false ) {
  1877. // Assume true and try to prove false
  1878. triggered = true;
  1879. switch( event.keyCode ) {
  1880. // p, page up
  1881. case 80: case 33: navigatePrev(); break;
  1882. // n, page down
  1883. case 78: case 34: navigateNext(); break;
  1884. // h, left
  1885. case 72: case 37: navigateLeft(); break;
  1886. // l, right
  1887. case 76: case 39: navigateRight(); break;
  1888. // k, up
  1889. case 75: case 38: navigateUp(); break;
  1890. // j, down
  1891. case 74: case 40: navigateDown(); break;
  1892. // home
  1893. case 36: slide( 0 ); break;
  1894. // end
  1895. case 35: slide( Number.MAX_VALUE ); break;
  1896. // space
  1897. case 32: isOverview() ? deactivateOverview() : event.shiftKey ? navigatePrev() : navigateNext(); break;
  1898. // return
  1899. case 13: isOverview() ? deactivateOverview() : triggered = false; break;
  1900. // b, period, Logitech presenter tools "black screen" button
  1901. case 66: case 190: case 191: togglePause(); break;
  1902. // f
  1903. case 70: enterFullscreen(); break;
  1904. default:
  1905. triggered = false;
  1906. }
  1907. }
  1908. // If the input resulted in a triggered action we should prevent
  1909. // the browsers default behavior
  1910. if( triggered ) {
  1911. event.preventDefault();
  1912. }
  1913. // ESC or O key
  1914. else if ( ( event.keyCode === 27 || event.keyCode === 79 ) && features.transforms3d ) {
  1915. if( dom.preview ) {
  1916. closePreview();
  1917. }
  1918. else {
  1919. toggleOverview();
  1920. }
  1921. event.preventDefault();
  1922. }
  1923. // If auto-sliding is enabled we need to cue up
  1924. // another timeout
  1925. cueAutoSlide();
  1926. }
  1927. /**
  1928. * Handler for the 'touchstart' event, enables support for
  1929. * swipe and pinch gestures.
  1930. */
  1931. function onTouchStart( event ) {
  1932. touch.startX = event.touches[0].clientX;
  1933. touch.startY = event.touches[0].clientY;
  1934. touch.startCount = event.touches.length;
  1935. // If there's two touches we need to memorize the distance
  1936. // between those two points to detect pinching
  1937. if( event.touches.length === 2 && config.overview ) {
  1938. touch.startSpan = distanceBetween( {
  1939. x: event.touches[1].clientX,
  1940. y: event.touches[1].clientY
  1941. }, {
  1942. x: touch.startX,
  1943. y: touch.startY
  1944. } );
  1945. }
  1946. }
  1947. /**
  1948. * Handler for the 'touchmove' event.
  1949. */
  1950. function onTouchMove( event ) {
  1951. // Each touch should only trigger one action
  1952. if( !touch.captured ) {
  1953. onUserInput( event );
  1954. var currentX = event.touches[0].clientX;
  1955. var currentY = event.touches[0].clientY;
  1956. // If the touch started with two points and still has
  1957. // two active touches; test for the pinch gesture
  1958. if( event.touches.length === 2 && touch.startCount === 2 && config.overview ) {
  1959. // The current distance in pixels between the two touch points
  1960. var currentSpan = distanceBetween( {
  1961. x: event.touches[1].clientX,
  1962. y: event.touches[1].clientY
  1963. }, {
  1964. x: touch.startX,
  1965. y: touch.startY
  1966. } );
  1967. // If the span is larger than the desire amount we've got
  1968. // ourselves a pinch
  1969. if( Math.abs( touch.startSpan - currentSpan ) > touch.threshold ) {
  1970. touch.captured = true;
  1971. if( currentSpan < touch.startSpan ) {
  1972. activateOverview();
  1973. }
  1974. else {
  1975. deactivateOverview();
  1976. }
  1977. }
  1978. event.preventDefault();
  1979. }
  1980. // There was only one touch point, look for a swipe
  1981. else if( event.touches.length === 1 && touch.startCount !== 2 ) {
  1982. var deltaX = currentX - touch.startX,
  1983. deltaY = currentY - touch.startY;
  1984. if( deltaX > touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) {
  1985. touch.captured = true;
  1986. navigateLeft();
  1987. }
  1988. else if( deltaX < -touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) {
  1989. touch.captured = true;
  1990. navigateRight();
  1991. }
  1992. else if( deltaY > touch.threshold ) {
  1993. touch.captured = true;
  1994. navigateUp();
  1995. }
  1996. else if( deltaY < -touch.threshold ) {
  1997. touch.captured = true;
  1998. navigateDown();
  1999. }
  2000. // If we're embedded, only block touch events if they have
  2001. // triggered an action
  2002. if( config.embedded ) {
  2003. if( touch.captured || isVerticalSlide( currentSlide ) ) {
  2004. event.preventDefault();
  2005. }
  2006. }
  2007. // Not embedded? Block them all to avoid needless tossing
  2008. // around of the viewport in iOS
  2009. else {
  2010. event.preventDefault();
  2011. }
  2012. }
  2013. }
  2014. // There's a bug with swiping on some Android devices unless
  2015. // the default action is always prevented
  2016. else if( navigator.userAgent.match( /android/gi ) ) {
  2017. event.preventDefault();
  2018. }
  2019. }
  2020. /**
  2021. * Handler for the 'touchend' event.
  2022. */
  2023. function onTouchEnd( event ) {
  2024. touch.captured = false;
  2025. }
  2026. /**
  2027. * Convert pointer down to touch start.
  2028. */
  2029. function onPointerDown( event ) {
  2030. if( event.pointerType === event.MSPOINTER_TYPE_TOUCH ) {
  2031. event.touches = [{ clientX: event.clientX, clientY: event.clientY }];
  2032. onTouchStart( event );
  2033. }
  2034. }
  2035. /**
  2036. * Convert pointer move to touch move.
  2037. */
  2038. function onPointerMove( event ) {
  2039. if( event.pointerType === event.MSPOINTER_TYPE_TOUCH ) {
  2040. event.touches = [{ clientX: event.clientX, clientY: event.clientY }];
  2041. onTouchMove( event );
  2042. }
  2043. }
  2044. /**
  2045. * Convert pointer up to touch end.
  2046. */
  2047. function onPointerUp( event ) {
  2048. if( event.pointerType === event.MSPOINTER_TYPE_TOUCH ) {
  2049. event.touches = [{ clientX: event.clientX, clientY: event.clientY }];
  2050. onTouchEnd( event );
  2051. }
  2052. }
  2053. /**
  2054. * Handles mouse wheel scrolling, throttled to avoid skipping
  2055. * multiple slides.
  2056. */
  2057. function onDocumentMouseScroll( event ) {
  2058. if( Date.now() - lastMouseWheelStep > 600 ) {
  2059. lastMouseWheelStep = Date.now();
  2060. var delta = event.detail || -event.wheelDelta;
  2061. if( delta > 0 ) {
  2062. navigateNext();
  2063. }
  2064. else {
  2065. navigatePrev();
  2066. }
  2067. }
  2068. }
  2069. /**
  2070. * Clicking on the progress bar results in a navigation to the
  2071. * closest approximate horizontal slide using this equation:
  2072. *
  2073. * ( clickX / presentationWidth ) * numberOfSlides
  2074. */
  2075. function onProgressClicked( event ) {
  2076. onUserInput( event );
  2077. event.preventDefault();
  2078. var slidesTotal = toArray( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).length;
  2079. var slideIndex = Math.floor( ( event.clientX / dom.wrapper.offsetWidth ) * slidesTotal );
  2080. slide( slideIndex );
  2081. }
  2082. /**
  2083. * Event handler for navigation control buttons.
  2084. */
  2085. function onNavigateLeftClicked( event ) { event.preventDefault(); onUserInput(); navigateLeft(); }
  2086. function onNavigateRightClicked( event ) { event.preventDefault(); onUserInput(); navigateRight(); }
  2087. function onNavigateUpClicked( event ) { event.preventDefault(); onUserInput(); navigateUp(); }
  2088. function onNavigateDownClicked( event ) { event.preventDefault(); onUserInput(); navigateDown(); }
  2089. function onNavigatePrevClicked( event ) { event.preventDefault(); onUserInput(); navigatePrev(); }
  2090. function onNavigateNextClicked( event ) { event.preventDefault(); onUserInput(); navigateNext(); }
  2091. /**
  2092. * Handler for the window level 'hashchange' event.
  2093. */
  2094. function onWindowHashChange( event ) {
  2095. readURL();
  2096. }
  2097. /**
  2098. * Handler for the window level 'resize' event.
  2099. */
  2100. function onWindowResize( event ) {
  2101. layout();
  2102. }
  2103. /**
  2104. * Handle for the window level 'visibilitychange' event.
  2105. */
  2106. function onPageVisibilityChange( event ) {
  2107. var isHidden = document.webkitHidden ||
  2108. document.msHidden ||
  2109. document.hidden;
  2110. // If, after clicking a link or similar and we're coming back,
  2111. // focus the document.body to ensure we can use keyboard shortcuts
  2112. if( isHidden === false && document.activeElement !== document.body ) {
  2113. document.activeElement.blur();
  2114. document.body.focus();
  2115. }
  2116. }
  2117. /**
  2118. * Invoked when a slide is and we're in the overview.
  2119. */
  2120. function onOverviewSlideClicked( event ) {
  2121. // TODO There's a bug here where the event listeners are not
  2122. // removed after deactivating the overview.
  2123. if( eventsAreBound && isOverview() ) {
  2124. event.preventDefault();
  2125. var element = event.target;
  2126. while( element && !element.nodeName.match( /section/gi ) ) {
  2127. element = element.parentNode;
  2128. }
  2129. if( element && !element.classList.contains( 'disabled' ) ) {
  2130. deactivateOverview();
  2131. if( element.nodeName.match( /section/gi ) ) {
  2132. var h = parseInt( element.getAttribute( 'data-index-h' ), 10 ),
  2133. v = parseInt( element.getAttribute( 'data-index-v' ), 10 );
  2134. slide( h, v );
  2135. }
  2136. }
  2137. }
  2138. }
  2139. /**
  2140. * Handles clicks on links that are set to preview in the
  2141. * iframe overlay.
  2142. */
  2143. function onPreviewLinkClicked( event ) {
  2144. var url = event.target.getAttribute( 'href' );
  2145. if( url ) {
  2146. openPreview( url );
  2147. event.preventDefault();
  2148. }
  2149. }
  2150. /**
  2151. * Handles click on the auto-sliding controls element.
  2152. */
  2153. function onAutoSlidePlayerClick( event ) {
  2154. // Replay
  2155. if( Reveal.isLastSlide() && config.loop === false ) {
  2156. slide( 0, 0 );
  2157. resumeAutoSlide();
  2158. }
  2159. // Resume
  2160. else if( autoSlidePaused ) {
  2161. resumeAutoSlide();
  2162. }
  2163. // Pause
  2164. else {
  2165. pauseAutoSlide();
  2166. }
  2167. }
  2168. // --------------------------------------------------------------------//
  2169. // ------------------------ PLAYBACK COMPONENT ------------------------//
  2170. // --------------------------------------------------------------------//
  2171. /**
  2172. * Constructor for the playback component, which displays
  2173. * play/pause/progress controls.
  2174. *
  2175. * @param {HTMLElement} container The component will append
  2176. * itself to this
  2177. * @param {Function} progressCheck A method which will be
  2178. * called frequently to get the current progress on a range
  2179. * of 0-1
  2180. */
  2181. function Playback( container, progressCheck ) {
  2182. // Cosmetics
  2183. this.diameter = 50;
  2184. this.thickness = 3;
  2185. // Flags if we are currently playing
  2186. this.playing = false;
  2187. // Current progress on a 0-1 range
  2188. this.progress = 0;
  2189. // Used to loop the animation smoothly
  2190. this.progressOffset = 1;
  2191. this.container = container;
  2192. this.progressCheck = progressCheck;
  2193. this.canvas = document.createElement( 'canvas' );
  2194. this.canvas.className = 'playback';
  2195. this.canvas.width = this.diameter;
  2196. this.canvas.height = this.diameter;
  2197. this.context = this.canvas.getContext( '2d' );
  2198. this.container.appendChild( this.canvas );
  2199. this.render();
  2200. }
  2201. Playback.prototype.setPlaying = function( value ) {
  2202. var wasPlaying = this.playing;
  2203. this.playing = value;
  2204. // Start repainting if we weren't already
  2205. if( !wasPlaying && this.playing ) {
  2206. this.animate();
  2207. }
  2208. else {
  2209. this.render();
  2210. }
  2211. };
  2212. Playback.prototype.animate = function() {
  2213. var progressBefore = this.progress;
  2214. this.progress = this.progressCheck();
  2215. // When we loop, offset the progress so that it eases
  2216. // smoothly rather than immediately resetting
  2217. if( progressBefore > 0.8 && this.progress < 0.2 ) {
  2218. this.progressOffset = this.progress;
  2219. }
  2220. this.render();
  2221. if( this.playing ) {
  2222. features.requestAnimationFrameMethod.call( window, this.animate.bind( this ) );
  2223. }
  2224. };
  2225. /**
  2226. * Renders the current progress and playback state.
  2227. */
  2228. Playback.prototype.render = function() {
  2229. var progress = this.playing ? this.progress : 0,
  2230. radius = ( this.diameter / 2 ) - this.thickness,
  2231. x = this.diameter / 2,
  2232. y = this.diameter / 2,
  2233. iconSize = 14;
  2234. // Ease towards 1
  2235. this.progressOffset += ( 1 - this.progressOffset ) * 0.1;
  2236. var endAngle = ( - Math.PI / 2 ) + ( progress * ( Math.PI * 2 ) );
  2237. var startAngle = ( - Math.PI / 2 ) + ( this.progressOffset * ( Math.PI * 2 ) );
  2238. this.context.save();
  2239. this.context.clearRect( 0, 0, this.diameter, this.diameter );
  2240. // Solid background color
  2241. this.context.beginPath();
  2242. this.context.arc( x, y, radius + 2, 0, Math.PI * 2, false );
  2243. this.context.fillStyle = 'rgba( 0, 0, 0, 0.4 )';
  2244. this.context.fill();
  2245. // Draw progress track
  2246. this.context.beginPath();
  2247. this.context.arc( x, y, radius, 0, Math.PI * 2, false );
  2248. this.context.lineWidth = this.thickness;
  2249. this.context.strokeStyle = '#666';
  2250. this.context.stroke();
  2251. if( this.playing ) {
  2252. // Draw progress on top of track
  2253. this.context.beginPath();
  2254. this.context.arc( x, y, radius, startAngle, endAngle, false );
  2255. this.context.lineWidth = this.thickness;
  2256. this.context.strokeStyle = '#fff';
  2257. this.context.stroke();
  2258. }
  2259. this.context.translate( x - ( iconSize / 2 ), y - ( iconSize / 2 ) );
  2260. // Draw play/pause icons
  2261. if( this.playing ) {
  2262. this.context.fillStyle = '#fff';
  2263. this.context.fillRect( 0, 0, iconSize / 2 - 2, iconSize );
  2264. this.context.fillRect( iconSize / 2 + 2, 0, iconSize / 2 - 2, iconSize );
  2265. }
  2266. else {
  2267. this.context.beginPath();
  2268. this.context.translate( 2, 0 );
  2269. this.context.moveTo( 0, 0 );
  2270. this.context.lineTo( iconSize - 2, iconSize / 2 );
  2271. this.context.lineTo( 0, iconSize );
  2272. this.context.fillStyle = '#fff';
  2273. this.context.fill();
  2274. }
  2275. this.context.restore();
  2276. };
  2277. Playback.prototype.on = function( type, listener ) {
  2278. this.canvas.addEventListener( type, listener, false );
  2279. };
  2280. Playback.prototype.off = function( type, listener ) {
  2281. this.canvas.removeEventListener( type, listener, false );
  2282. };
  2283. Playback.prototype.destroy = function() {
  2284. this.playing = false;
  2285. if( this.canvas.parentNode ) {
  2286. this.container.removeChild( this.canvas );
  2287. }
  2288. };
  2289. // --------------------------------------------------------------------//
  2290. // ------------------------------- API --------------------------------//
  2291. // --------------------------------------------------------------------//
  2292. return {
  2293. initialize: initialize,
  2294. configure: configure,
  2295. sync: sync,
  2296. // Navigation methods
  2297. slide: slide,
  2298. left: navigateLeft,
  2299. right: navigateRight,
  2300. up: navigateUp,
  2301. down: navigateDown,
  2302. prev: navigatePrev,
  2303. next: navigateNext,
  2304. prevFragment: previousFragment,
  2305. nextFragment: nextFragment,
  2306. // Deprecated aliases
  2307. navigateTo: slide,
  2308. navigateLeft: navigateLeft,
  2309. navigateRight: navigateRight,
  2310. navigateUp: navigateUp,
  2311. navigateDown: navigateDown,
  2312. navigatePrev: navigatePrev,
  2313. navigateNext: navigateNext,
  2314. // Forces an update in slide layout
  2315. layout: layout,
  2316. // Returns an object with the available routes as booleans (left/right/top/bottom)
  2317. availableRoutes: availableRoutes,
  2318. // Returns an object with the available fragments as booleans (prev/next)
  2319. availableFragments: availableFragments,
  2320. // Toggles the overview mode on/off
  2321. toggleOverview: toggleOverview,
  2322. // Toggles the "black screen" mode on/off
  2323. togglePause: togglePause,
  2324. // State checks
  2325. isOverview: isOverview,
  2326. isPaused: isPaused,
  2327. // Adds or removes all internal event listeners (such as keyboard)
  2328. addEventListeners: addEventListeners,
  2329. removeEventListeners: removeEventListeners,
  2330. // Returns the indices of the current, or specified, slide
  2331. getIndices: getIndices,
  2332. // Returns the slide at the specified index, y is optional
  2333. getSlide: function( x, y ) {
  2334. var horizontalSlide = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR )[ x ];
  2335. var verticalSlides = horizontalSlide && horizontalSlide.querySelectorAll( 'section' );
  2336. if( typeof y !== 'undefined' ) {
  2337. return verticalSlides ? verticalSlides[ y ] : undefined;
  2338. }
  2339. return horizontalSlide;
  2340. },
  2341. // Returns the previous slide element, may be null
  2342. getPreviousSlide: function() {
  2343. return previousSlide;
  2344. },
  2345. // Returns the current slide element
  2346. getCurrentSlide: function() {
  2347. return currentSlide;
  2348. },
  2349. // Returns the current scale of the presentation content
  2350. getScale: function() {
  2351. return scale;
  2352. },
  2353. // Returns the current configuration object
  2354. getConfig: function() {
  2355. return config;
  2356. },
  2357. // Helper method, retrieves query string as a key/value hash
  2358. getQueryHash: function() {
  2359. var query = {};
  2360. location.search.replace( /[A-Z0-9]+?=(\w*)/gi, function(a) {
  2361. query[ a.split( '=' ).shift() ] = a.split( '=' ).pop();
  2362. } );
  2363. // Basic deserialization
  2364. for( var i in query ) {
  2365. var value = query[ i ];
  2366. if( value === 'null' ) query[ i ] = null;
  2367. else if( value === 'true' ) query[ i ] = true;
  2368. else if( value === 'false' ) query[ i ] = false;
  2369. else if( !isNaN( parseFloat( value ) ) ) query[ i ] = parseFloat( value );
  2370. }
  2371. return query;
  2372. },
  2373. // Returns true if we're currently on the first slide
  2374. isFirstSlide: function() {
  2375. return document.querySelector( SLIDES_SELECTOR + '.past' ) == null ? true : false;
  2376. },
  2377. // Returns true if we're currently on the last slide
  2378. isLastSlide: function() {
  2379. if( currentSlide ) {
  2380. // Does this slide has next a sibling?
  2381. if( currentSlide.nextElementSibling ) return false;
  2382. // If it's vertical, does its parent have a next sibling?
  2383. if( isVerticalSlide( currentSlide ) && currentSlide.parentNode.nextElementSibling ) return false;
  2384. return true;
  2385. }
  2386. return false;
  2387. },
  2388. // Checks if reveal.js has been loaded and is ready for use
  2389. isReady: function() {
  2390. return loaded;
  2391. },
  2392. // Forward event binding to the reveal DOM element
  2393. addEventListener: function( type, listener, useCapture ) {
  2394. if( 'addEventListener' in window ) {
  2395. ( dom.wrapper || document.querySelector( '.reveal' ) ).addEventListener( type, listener, useCapture );
  2396. }
  2397. },
  2398. removeEventListener: function( type, listener, useCapture ) {
  2399. if( 'addEventListener' in window ) {
  2400. ( dom.wrapper || document.querySelector( '.reveal' ) ).removeEventListener( type, listener, useCapture );
  2401. }
  2402. }
  2403. };
  2404. })();