Download
Demo
- Overview
- Documents
User Rating: 4.3/5 ( 1 votes)
Your Rating:
fastuts.js is a faster way to display quick tutorials in your application or website using jQuery.
- It's tiny! Just 5KB;
- Easy to customize;
- Allows callback functions;
- jQuery required.
-
sex shop
sex shop
sex shop
sex shop
sex shop
seks shop
spanish fly
psikolog
sohbet numara
sohbet hatti
Source: github.com
1. INCLUDE CSS AND JS FILES
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css"> <link rel="stylesheet" href="fastuts.css"> <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="fastuts.js"></script>
2. HTML
First off, add the class fastuts to all the elements you want to introduce to people, as the example below. Also, it's required to add the attribute data-fastuts-tip. Optionally, you can add a sequence number to your presentation using the attribute data-fastuts-order.
<div class="fastuts" data-fastuts-tip="Put a short tip right here" data-fastuts-order="2">
<h4>Some random content one</h4>
<p>Donec id elit non mi porta gravida at eget metus. Maecenas faucibus mollis interdum.</p>
</div>
<div class="fastuts" data-fastuts-tip="Another tip" data-fastuts-order="1">
<h4>Some random content two</h4>
<p>Donec id elit non mi porta gravida at eget metus. Maecenas faucibus mollis interdum.</p>
</div>
3. JAVASCRIPT
$('.fastuts').fastuts();
4. OPTIONS
Would you like to fully customize fastuts.js? Here's all the options:
$('.fastuts').fastuts
({
settings:
{
spacing: '40px',
time: 0.2,
autoScroll: true,
allowKeys: true
},
buttons:
{
close:
{
class: '.fastuts-button-close',
text: 'Close',
callback: function ()
{
console.log('Clicked close button');
}
},
prev:
{
class: '.fastuts-button-prev',
text: '❮',
callback: function (index, element)
{
console.log('Clicked back button and moving to element ' + index);
}
},
next:
{
class: '.fastuts-button-next',
text: '❯',
callback: function (index, element)
{
console.log('Clicked next button and moving to element ' + index);
}
}
},
overlay:
{
color: 'rgba(0,0,0,0.8)',
allowEscapeKey: true,
onClose: function ()
{
console.log('Clicked on overlay to close');
}
},
onReady: function ()
{
console.log('Fastuts ready!');
},
});
JS Tutorial
