🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

Interactive.js is a jQuery plugin for creating dynamic, automatic, interactive guided tours of various elements through your web app.

Feature-Tour tour

Documentation

interactive

jQuery plugin, interactive guide tour

Comenzando

Incluya el script interactive.vx.x.x.js dentro de su página.

<script src="interactive.v0.0.2.js"></script>

Ver demo online, demo

Iniciando nuestro tutorial

<script> $('li a.nav-link:eq(0)').interactive({ 	size:100, 	textPosition:{ 		bottom:'100px' 	}, 	text:'Este ejemplo muestra como podemos resaltar un elemento y dar un tour general' }) .then(function(){ 	return $('.btn-primary').interactive({ 			size:100, 			textPosition:{ 			bottom:'100px' 		}, 		text:'Pulse en este enlace para realizar alguna accion' 	}) }) .then(function(){ 	return $('.btn-search').interactive({ 		size:100, 		textPosition:{ 			bottom:'100px' 		}, 		text:'Explicar las busquedas al usuario, Happy coding !!' 	}) }) </script>

You May Also Like