JSFiddle - React, Tailwind, and code Playground

by sunil puvvada

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-tour/0.11.0/js/bootstrap-tour-standalone.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-tour/0.11.0/css/bootstrap-tour-standalone.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
 <div class="container theme-showcase">
	<p>
		<input type="button" class="btn btn-lg btn-primary" onclick="startTour()" value="Start Tour" />
	</p>



	<!-- Main jumbotron for a primary marketing message or call to action -->
	<div class="jumbotron">
		<h1>Theme example</h1>
		<p>This is a template showcasing the optional theme stylesheet included in Bootstrap. Use it as a starting point to create something more unique by building on or modifying it.</p>
	</div>


	<div class="page-header">
		<h1 id="buttons">Buttons</h1>
	</div>
	<div class="exampletwo">
		<h1>Theme example</h1>
		<p >Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
		tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
		quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
		consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
		cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
		proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
	</div> 

	<div class="alerts">
	<div class="page-header">
		<h1 id="alerts">Alerts</h1>
	</div>
	<div class="alert alert-success" role="alert">
		<strong>Well done!</strong> You successfully read this important alert message.
	</div>
	<div class="alert alert-info" role="alert">
		<strong>Heads up!</strong> This alert needs your attention, but it's not super important.
	</div>
	<div class="alert alert-warning" role="alert">
		<strong>Warning!</strong> Best check yo self, you're not looking too...

JavaScript

// Instance the tour
var tour = new Tour({
    smartPlacement: false, // does NOT work every time
    backdrop: true,
    steps: [{
        element: ".jumbotron",
        placement: 'bottom',
        title: "Jumbotron ",
        content: "A jumbotron indicates a big box for calling extra attention to some special content or information."
    }, {
        element: "#buttons",
        placement: 'right',
        title: "Buttons",
        content: "Bootstrap provides seven styles of buttons: Default, Primary, Success, Info, Warning, Danger, Link"
    }, {
        element: "#alerts",
        placement: 'left',
        title: "Alerts",
        content: "Bootstrap provides an easy way to create predefined alert messages."
    }]
});


function startTour() {
    // Initialize the tour
    tour.init();
    // Restart from begining
    tour.restart();
    // Start the tour
    tour.start(true);
}