Skip to content

invmatt/Slidy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Slidy

Slidy Carousel is a lightweight jQuery carousel for sliding html based content.

Current status

Stable - development release
List of known issues / Planned features

Usage

'auto'			default: false		If the carousel should automatically rotate
'autoTime'		default: 5000		How many MilliSeconds the carousel should automatically rotate
'nav'			default: false		Shows previous/next links
'navPostion'	default: inside	    (options: inside/outside) where the nav links should appear
'paging'	    default: false		add paging to the carousel
'items'			default: 3		    How many items to show
'scroll'		default: 1		    How many items to scroll each click or auto rotate
'scrollTime'	default: 1000		The time in MilliSeconds to scroll the items

CSS (Minimal)

.slidy {
	overflow: hidden;
}
.slidy-contain {
	position: relative;
}

	.slidy-item {
		float: left;
	}

Call the plugin (Example)

The selector you call should be on the element directly above the UL

$(document).ready(function() {
	$.slidy('.slidy', {
		nav: true,
		navPosition: "outside",
		auto: false
	});
});

BETA: Call Slidy using:

$('#selector').slidy({
  items: 5
});

About

UNSUPPORTED - Slidy is a jQuery carousel plugin

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published