jQuery infiniteSlide V2 Examples

Basic


$('.scroll1').infiniteslide();
	

Mixed Content

Desciption 1

Desciption 2

Desciption 3

Desciption 4

Desciption 5

Desciption 6

Desciption 7


$('.scroll2').infiniteslide({
	speed: 200,
	direction: 'right'
});
	

Vertical


$('.scroll3').infiniteslide({
	speed: 300,
	direction: 'down'
});
	

Text Scroller


$('.scroll4').infiniteslide({
	pauseonhover: false
});
	

With different heights


$('.scroll5').infiniteslide({
	speed: 50
});
	

Responsive


$('.scroll6').infiniteslide({
	speed: 200,
	responsive: true
});
	

Clone Items


$('.scroll7').infiniteslide({
	direction: 'right',
	clone: 10
});