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

ajSlider is a slideshow jQuery plugin which can be used as the main banner for your webpages or as a image gallery. All you have to do is add the js files, initialize jQuery and add the img tag and anchor tags enclosed inside the ajSlider div.Features:Enable/Disable the automatic slideshow actionSet the height/width of the slider to your requirement or if not specified, it automatically calculates the size from the added imagesSpecify the colors for the slider bulletsSpecify the position and size of the slide’s text content

Plugins Slider

Documentation

ajSlider

Image and Content Slider jQuery Plugin
Developed by Arun Thomas
www.ajarunthomas.com

Demo Download

Website

USAGE

Step 1 : Include js

<script type="text/javascript" src="js/jquery-1.12.0.min.js"></script> <script type="text/javascript" src="js/ajSlider.js"></script> 

Step 2 : HTML

<div id="ajSlider">   <img src="images/1.jpg" width="" height="" />   <img src="images/2.jpg" width="" height="" />   <img src="images/3.jpg" width="" height="" />   <img src="images/4.jpg" width="" height="" />   <img src="images/5.jpg" width="" height="" />      <a>Text 1</a>   <a>Text 2</a>   <a>Text 3</a>   <a>Text 4</a>   <a>Text 5</a> </div> 

Important : Don't forget to enter the width and height of the images if the jQuery is initialized in $(document).ready(function{});

Step 3 : Initialize jQuery

$(document).ready(function() {     $('#ajSlider').ajSlider(3000); }); 

where 3000 is the interval between each slide

more options

$(document).ready(function() {     $('#ajSlider').ajSlider(3000,{ 		"slideshow":"disable", //disable or enable the slideshow 		"width":"100%", //width of slider 		"height":"100%", //height of slider 		"activeBullet":"red", //color of the active bullet 		"inactiveBullet":"orange", //color of inactive bullet 		"textPosition":"30%", //position of text from top 		"textSize":"60px" //font size of the text 		}); }); 

You May Also Like