basilio / responsiveCarousel

Simple carousel
MIT License
113 stars 64 forks source link

No swipe? Chrome on iPhone #29

Open pioneerwebsites opened 10 years ago

pioneerwebsites commented 10 years ago

I'm loving responsiveCarousel and one of the reasons we looked here was because of swipe by default...

But testing from Chrome on iPhone on the demo page I can't swipe any carousels to advance them. Also tested Safari on iPhone - fail. Any word?

honzakadlec commented 9 years ago

hi @pioneerwebsites, it's quite long time, there is bug in touchend coordinates grabing - you need to replace line defaults.swipeDistance = defaults.endCoords.pageX - defaults.startCoords.pageX; with defaults.swipeDistance = e.originalEvent.changedTouches[0].pageX - defaults.startCoords.pageX;

Hope it will help