# sGlide

A smart, lightweight and flexible slider, that's fully featured, responsive and mobile-ready. Standalone or jQuery. It can be easily customized and styled using regular CSS.

For details, visit [home page](http://webshifted.com/sGlide/).

Quickstart Guide: apply the following to an empty `div` with a unique id.

```js
let callback = o => {};
let options = {
	startAt: 60,
	width: 85,
	height: 20,
	snap: {
		points: 5,
		marks: true
	},
	drop: callback,
	onSnap: callback
};

// Standalone
let sG_instance = new sGlide(el, options);

// or jQuery
$('div#slider').sGlide(options);
```
