reveal.js 146 KB

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