You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible to set up a starting slide that is not the slide #1?
If so, how to achieve this? Let's say I want to start my presentation at a slide with a particular id or class, rather than the first slide in the dom.
Thanks in advance!
The text was updated successfully, but these errors were encountered:
If what you want to achieve is something like this: http://radiocochon.com/ (at loading it will navigate in the central page of a 3x3 flow) you can just force a navigation just after the Flowtime init.
You can find the page via document.querySelector (or any other method you prefer) you want to navigate to and use Flowtime.gotoPage(HTMLElement target) to tell Flowtime to start a navigation right after the script loads.
With this method you could also start Flowtime with the additional class no-transition applied to the Flowtime main element and remove the no-transition class just after ne first navigation so the transition from the first page to your start page will not be performed.
If you have a long loading time you could see the content of the first page for a little time but this is a easy to resolve issue hiding the Flowtime container until the first navigation has performed.
Would it be possible to set up a starting slide that is not the slide #1?
If so, how to achieve this? Let's say I want to start my presentation at a slide with a particular id or class, rather than the first slide in the dom.
Thanks in advance!
The text was updated successfully, but these errors were encountered: