reveal.js 120 KB

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