Zero Configuration
- this is 1
- this is 2
- this is 3
$('#s1').slideIt();
$('#s3').slideIt({'orientation': 'vertical'});
$('#s2').slideIt({'interval': 1000,'showNumbers': false});
<style>
/*different styling for #s4/
#s4 .slide-pager li {
padding: 4px;
margin: 2px;
font-size: 0px;
border-radius: 8px;
background-color: #000;
float: left;
}
#s4 .slide-pager li.active {
background-color:red
}
</style>
$('#s4').slideIt({'showNumbers': false});
//add data-title attribute to each li
$('#s5').slideIt({'showNumbers':false});
Titled Controls - Tab Style
//add data-title attribute to each li
$('#s6').slideIt({
'auto':false,
'animate':false,
'showNumbers':false
});
//add data-title attribute to each li
$('#s7').slideIt({
'auto':false,
'hover':true,
'animate':false,
'showNumbers':false
});
← back to htmlstack.com
source code →