Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alvaromontoro/TourGuide

JS module that helps generate step-by-step instructions and demos in an easy way
https://github.com/alvaromontoro/TourGuide

css html javascript javascript-plugin

Last synced: about 1 month ago
JSON representation

JS module that helps generate step-by-step instructions and demos in an easy way

Awesome Lists containing this project

README

        

# TourGuide

[![Build Status](https://travis-ci.org/alvaromontoro/tourguide.svg?branch=master)](https://travis-ci.org/alvaromontoro/tourguide)
[![npm](https://img.shields.io/npm/v/tourguide.svg)](https://www.npmjs.com/package/tourguide)
[![npm](https://img.shields.io/npm/l/tourguide.svg)](https://www.npmjs.com/package/tourguide)

## About

TourGuide is a JavaScript module that helps generate step-by-step instructions and demos in an easy way. It spotlights elements adding small commentary on them. [See a demo working on CodePen](https://codepen.io/alvaromontoro/full/WNeKwRK).

It uses borders and box-shadows to create a spotlight area that will highlight a specific element, displaying commentary text, and animating from one step to another using CSS transitions. It is highly customizable, works on desktop and mobile, and users can opt to use the default controls or create their own using the plugin API.

Initially, it was a CSS-only animation for a [Snake & Ladders](https://codepen.io/alvaromontoro/full/gjWPNW/) game. Then it was ported into JavaScript and this module was created.

## How to use it

This is a simple 4-step way to start TourGuide:

1. Download an import the JS library and CSS file into your project. You can do this by:

1. Downloading/importing the files directly into your project:


2. Installing the package from npm

npm i tourguide

3. Adding the package from yarn

yarn add tourguide

2. Add `data-sp-next` data-attribute to the elements that you want to highlight as part of your instructions.

There are more data-attributes that can be added, but only the `data-sp-next` is essential to create the list of steps for the instructions.

3. Initialize TourGuide with the selector of the initial element of the instructions:


let tour = new TourGuide({
init: "#step1"
});

4. With JavaScript, trigger the beginning of the instructions/demo using the `start` method:

tour.start();

For more examples on how to start, check the repository demos.

## Parameters

| Parameter | Type | Description |
| ------------ | ------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| color | Color | String with the color of the shadow. Default: "rgba(0, 0, 0, 0.5)". |
| init | String | Selector of the first element that will be highlighted, and from which the list of steps will be created. This field has no default value. **Either this parameter of `steps` must be specified when starting TourGuide.** |
| initTrigger | Boolean | Indicates if the first element will also be the trigger of the animation. Default: false. |
| next | Boolean | Indicates if the link to the next step will be displayed. Default: true |
| nextText | String | Specifies the text of the next step link. Admits HTML. Default: "Next" |
| previous | Boolean | Indicates if the link to the previous step will be displayed. Default: true |
| previousText | String | Specifies the text of the previous step link. Admits HTML. Default: "Previous" |
| shape | square\|round | String that indicates the shape of the spotlight: squared or round/elliptical. Default value: "round". |
| skip | Boolean | Indicates if the link to skip the instructions will be displayed. Default: true |
| skipText | String | Specifies the text of the link to skip instructions. Default: "Skip presentation" |
| steps | Array | List with objects that will contain ID, text, and shape of the element to be highlighted (see more below). This field has no default value. **Either this parameter of `init` must be specified when starting TourGuide.** |

The structure of the steps list will be as follows:

[
{
selector: "selector-of-the-element-to-be-highglighted-(mandatory)",
text: "text-to-be-displayed-(optional)",
shape: "shape-of-the-element-(optional)"
},
...
]

So, for example, the following ways of initializing SpolightJS would be equivalent:

Method 1:

Hello!

Good Bye!


let tourguide = new TourGuide({ init: "#step-1" });

Method 2:

Hello!

Good Bye!


let tourguide = new TourGuide({
steps:[
{ selector: "#step-1", text: "This is the first step." },
{ selector: "#step-2", text: "This is the last step.", shape: "round" }
]
});

## API methods

In order to customize the instructions, you could hide all the controls (next, previous, skip) and use your own using the methods from the provided API, or you could also hide the text associated to each step (via CSS) and design your own instruction text. For some examples of the possibilities, see the demos page.

| Method | Returns | Description |
| --------------------------- | ------- | ---------------------------------------------------------------------------- |
| getCurrentElement() | Object | Returns the element that is currently highlighted. |
| getCurrentElementSelector() | String | Returns the selector provided for the element that is currently highlighted. |
| getStep() | Integer | Returns the integer value of the current step (from 1 to no). |
| getText() | String | Returns the text associated to the currently highlighted step. |
| getTotalSteps() | Integer | Returns the total number of steps in the presentation. |
| goToFirstStep() | - | Animates to the first step. |
| goToNextStep() | - | Animates to the following step in the presentation. |
| goToPreviousStep() | - | Animates to the previous step in the presentation. |
| goToStep(n) | - | Animates directly to step n. |
| start() | - | Starts the animation from the first step. |
| stop() | - | Stops the current animation. |

## Browser Support

| ![Edge Logo 32x32](https://cdnjs.cloudflare.com/ajax/libs/browser-logos/56.3.2/edge/edge_32x32.png)
IE/Edge | ![Firefox Logo](https://cdnjs.cloudflare.com/ajax/libs/browser-logos/56.3.2/archive/firefox_23-56/firefox_23-56_32x32.png)
Firefox | ![Chrome](https://cdnjs.cloudflare.com/ajax/libs/browser-logos/56.3.2/archive/chrome_12-48/chrome_12-48_32x32.png)
Chrome | ![Safari Logo](https://cdnjs.cloudflare.com/ajax/libs/browser-logos/56.3.2/archive/safari_1-7/safari_1-7_32x32.png)
Safari | ![Opera logo](https://cdnjs.cloudflare.com/ajax/libs/browser-logos/56.3.2/opera/opera_32x32.png)
Opera |
| -------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- |
| 9+ | 12+ | 4+ | 4+ | 11.5+ |