reveal.js 100 KB

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