/sGlide

sGlide is a super flexible and light-weight jQuery- or standalone plugin that generates a simple, feature-rich & mobile-ready slider.

Primary LanguageJavaScript

sGlide

sGlide is a jQuery- or standalone plugin that generates a simple, light-weight, feature-rich and mobile-ready slider, which can be easily customized and styled using regular CSS. Visit http://iframework.net/sGlide/

Quickstart Guide: apply the following to an empty DIV with a unique id.

// jQuery:
// $('#slider').sGlide({
// jQuery independent:
var my_sGlide_instance = new sGlide(my_element, {
	startAt: 60,
	width: 600,
	height: 20,
	unit: 'px',
	snap: {
		points: 5,
		marks: true
	},
	drop: function(o){
		// 'o' Object returned
	}
});