Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 504 Bytes

File metadata and controls

30 lines (24 loc) · 504 Bytes

jQuery Mobile Carousel

This is currently a rough draft version of a carousel widget.

Optional Settings

  • padding
  • width
  • height
  • pagingLeft
  • pagingRight
  • pagingBullet
  • pagingCurrent
  • marginWidth
  • contentWidth
  • scrollToTop

TODO: Document the functionality of each of those settings

Example usage with optional settings

$(function(){
	$(".mobile-carousel").mobile_carousel({
		marginWidth: 0,
		height: 200,
		padding: 0,
		scrollToTop: false
	});
});