Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.3k views
in Technique[技术] by (71.8m points)

javascript - Swipe left/right event on mobile devices, like a "click"

I need help: I have a classic carousel with arrow next and arrow prev for the images; I need to change the event like a click, in an event for switch next or prev image.

This:

$('.next-arrow").click(function({
    //Move the carousel to the next photo
})

$('.prev-arrow").click(function({
    //Move the carousel to the prev photo
})

Like this:

$('.mycarousel").svipe on right (function({
    //Move the carousel to the next photo
})

$('.mycarousel").svipe on left(function({
    //Move the carousel to the prev photo
})

Thank you!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Take a look a hammer.js - https://hammerjs.github.io/recognizer-swipe/. Seems like it has what you're looking for.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...