Skip to main content

Bootstrap Tour Implementation : The easiest way to show people how to use your website.

Bootstrap Tour Implementation : The easiest way to show people how to use your website.


Bootstrap Tour is a Good Free Altenative to Intro.js. See the Demo Here :- http://bootstraptour.com/. For adding this to your website you have to download it or use CDNs. Get CDNs From cdnjs.


Put the Below CDNs in b/w <head> Tags.


Setup your tour:

// Instance the tour
var tour = new Tour({
  steps: [
  {
    element: "#my-element",
    title: "Title of my step",
    content: "Content of my step"
  },
  {
    element: "#my-other-element",
    title: "Title of my step",
    content: "Content of my step"
  }
]});

// Initialize the tour
tour.init();

// Start the tour
tour.start();
JavaScript


Read More Documentation. | See Demo :- https://tutorials.sh20raj.repl.co/bootstrap-tour/demo.html

See Full Code


Comments

Random Posts