click-through

A jQuery plugin to create image click throughs in html simulations.


Install
bower install click-through

Documentation

#Click Through A jQuery plugin to create image click throughs.

##Usage ######Basic usage

$(".selector").clickthrough(
	{	
		images:['/img/one.jpg','/img/two.jpg','/img/three.jpg','/img/four.jpg','/img/five.jpg']
	}
);

######Looping the images

$(".selector").clickthrough(
	{	
		loop:true,
		images:['/img/one.jpg','/img/two.jpg','/img/three.jpg','/img/four.jpg','/img/five.jpg']
	}
);

######Defining a callback

$(".selector").clickthrough(
	{	
		loop:true,
		images:['coy.jpg','grumps.jpg','hair.jpg','pensive.jpg','yawn.jpg'],
		callback: function(item,index){ 
					console.log("ClickThrough clicked ",item,index)
				  }
	}
);

####Note The plugin doesn't assign any .css to your DOM element. You'll need to apply basic .css to control size, tiling, etc. Example

.clickthrough{
	background-repeat: no-repeat;
	background-size: cover
}