richardscarrott / jquery-ui-carousel

jQuery RS Carousel is a responsive and touch-enabled carousel written on top of jQuery and the jQuery UI Widget Factory providing a full and familiar API in less than 2.6kB minified and gzipped.
http://richardscarrott.github.io/jquery-ui-carousel/
192 stars 56 forks source link

[feature] Free-dragging, no snapping #64

Closed noxbriones closed 11 years ago

noxbriones commented 11 years ago

Great plugin btw!

It would be nice to add an option to enable to free-drag the content.. just like "drag & throw" stuff and not just snapping to page by page. Really works great if you have lots of contents especially on touchscreen or if you have wide images that you are like panning through them.

Thanks! Keep it up!

richardscarrott commented 11 years ago

I know what you mean but the majority of touch devices support this with a simple CSS overflow declaration:

.my-carousel {
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
}

so I'm not sure it'd be something I'd add to this carousel as all it'd really be adding is the ability to drag and throw on non-touch devices which isn't that great an experience anyway imo...