Special Admin Theme for small and medium webapp with very clean and aesthetic style and feel.
Start tour example!
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.
Tour is very easy to use. All you have to do is to define main tour object
var tour = new Tour
. You can add backdrop: true,
to add a gray background.
Next you need to define a tour step with array:
// 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();
See full documentation of official tour plugin: http://bootstraptour.com/.