How do I add navigation arrows for iframed revealjs presentations? #8803
-
DescriptionThe quarto revealjs website shows demo slides. They render with navigation controls on the right and left. How can I add those controls to my web pages that have embedded revealjs slides
in make_a_slide_deck/ I have
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This should happen by default following the controls feature which is
This should automatically adds the controls when you host the website and the iframe is loaded for the presentation. They won't show on localhost - only when deployed. This is implemented as a Revealjs plugin quarto-cli/src/resources/formats/revealjs/plugins/support/support.js Lines 21 to 35 in 1cf5ce2 Hope it helps |
Beta Was this translation helpful? Give feedback.
This should happen by default following the controls feature which is
controls: auto
by default. From https://quarto.org/docs/presentations/revealjs/presenting.html#navigation-optionsThis should automatically adds the controls when you host the website and the iframe is loaded for the presentation. They won't show on localhost - only when deployed.
This is implemented as a Revealjs plugin
quarto-cli/src/resources/formats/revealjs/plugins/support/support.js
Lines 21 to 35 in 1cf5ce2