-
-
Notifications
You must be signed in to change notification settings - Fork 78.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Touch Enabled Carousel #8907
Comments
Related: #2468 |
yeah… we should probably add this for the next rc |
@fat do you write your own code or use a library? |
I'm having second thoughts on this… Meanwhile, if you want swipe functionality i think you could just do something like this: Hammer(el).on("swipeleft", function () {
$(el).carousel('prev')
})
Hammer(el).on("swiperight", function () {
$(el).carousel('next')
}) otherwise, my friend @bradbirdsall's swipe carousel is a pretty good option https://github.com/bradbirdsall/Swipe |
ok thank you |
drop in replacement for twbs carousel to enable gestures on touch devices: have fun, |
http://getbootstrap.com/javascript/
is it possible to make it work when we swipe.
The text was updated successfully, but these errors were encountered: