Cookbook
Disable Scroll
Previously, disabling scrolling was built into Shepherd, but it was buggy
and bulky, so we opted to remove body-scroll-lock
as a dependency, in favor of users installing it directly in their apps. To disable scrolling,
you can install body-scroll-lock
and run bodyScrollLock.disableBodyScroll();
before
starting the tour, then bodyScrollLock.clearAllBodyScrollLocks();
after stopping the tour.
Highlighting multiple elements
The most obvious use case for this, is around a group of elements, or more specifically the column in a TABLE. This can be achieved using CSS to absolutely position the element and give it the width and height you need. e.g.,
and setting your CSS to something like:
Similar results could be had by adding elements purely for the purpose of exposing more than one element in the overlay and positioning the element absolutely.
Offsets
By default, FloatingUI instances are placed directly next to their target. However, if you need to apply some margin between them or if you need to fine tune the position according to some custom logic, you can use an offset middleware.
For example:
Progress Indicator
Using the already exposed API, you could add a progress indicator of your choosing for each step to let your users know how far into a tour they may be.
The example below uses the Step options
object and adds to when
on the show
event. Within that, we create an element
to render in the header with text of what step out of all potential steps is now
being show.
Another example, for anyone who wants to add progress indicators to the footer. Add the shepherd-progress
className and some extra styles.