reveal.js 136 KB

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