-
-
Notifications
You must be signed in to change notification settings - Fork 18
Basic Usage
Rudkovskiy edited this page Feb 4, 2020
·
17 revisions
const guideChimp = new GuideChimp('mytour');
guideChimp.start();
<div data-guidechimp-tour="mytour"
data-guidechimp-step="1"
data-guidechimp-title="Title: Step 1"
data-guidechimp-description="Description: Lorem Ipsum is simply dummy text of the printing and typesetting industry.">
</div>
See in action - TODO
<script>
// init GuideChimp
var guideChimp = new GuideChimp([{
element: '#step1',
title: 'Title: Step 1',
description: 'Description: Lorem Ipsum is simply dummy text of the printing and typesetting industry.',
}]);
// start tour
guideChimp.start();
</script>
See in action - https://codepen.io/netlicensing/full/QWwXRoQ