Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Learn More

How do I override browser swipe gestures to implement on-page swipe gestures in JavaScript?

  • 1 отговор
  • 1 има този проблем
  • 21 изгледи
  • Последен отговор от Matt Brubeck

more options

I've developed a site which uses left and right swipe gestures implemented in JavaScript to scroll through a carousel. However, these are ignored and are interpreted as usual by Firefox, showing either the tabs or navigation sidebar (right and left swipes respectively). Is there any way of overriding this behaviour?

I've developed a site which uses left and right swipe gestures implemented in JavaScript to scroll through a carousel. However, these are ignored and are interpreted as usual by Firefox, showing either the tabs or navigation sidebar (right and left swipes respectively). Is there any way of overriding this behaviour?

Променено на от scratchresistor

Всички отговори (1)

more options

You will need to use touch events to listen for swiping in mobile browsers:

https://developer.mozilla.org/en/DOM/Touch_events

If you call preventDefault() on the touchstart event, it will prevent the browser from scrolling the content.