Customizable, easy and quick application.
This plugin requires jQuery
Instalation using bower.
bower install fastslide.js --save
or download the .zip here.
Type: Boolean
Default true
Sets the automatic rotation of slides
Type: Boolean
Default false
allows accurate selection of the desired slide
Type: Boolean
Default true
enables navigation through keyboard arrows
Type: number
Default 5000
Sets the time interval for changing slides
Type: number
Default 1000
Sets the delay of the transition from slides
<div class="fs-container">
<div class="fastslide">
<img class="image" src="your-image.jpg">
<img class="image" src="your-image.jpg">
<img class="image" src="your-image.png">
<img class="image" src="your-image.jpg">
</div>
</div>
<script src="../src/fastslide.min.js"></script>
<script>
$(function(){
$('.fastslide').fastSlide();
});
</script>
html, body, .image {
margin: 0px;
padding: 0px;
}
.fs-container {
width: 100%;
overflow: hidden;
}
.fastslide {
position: relative;
}
.image {
float: left;
}
MIT