Presentations with reveal.js

Presentations with reveal.js

by Mike Clarke -
Number of replies: 1

I am using this tool to create a slide show with both horizontal and vertical slides.



Is there a way to have multiple columns of vertical slides?


e.g. slide 1 → slide 2 → slide 3 → slide 4

          ↓                               ↓

       slide1a                    slide → slide

         ↓                                            ↓

      slide1b →slide →slide         slide   → slide

                         ↓                            ↓

                    slide                        slide



Average of ratings: -
In reply to Mike Clarke

Re: Presentations with reveal.js

by Andrew Normore -

You could make a table that stores information about which slide is linked to which slide.

ID, this_slide, right, down, left, up 

for example

1, "slide 1", "slide 2", "slide 1a", 0
2, "slide 2", "slide 3", 0, "slide 1", 0
3, "slide1a", 0, "slide1b", 0, "slide 1"

Just shootin' an idea out smile