Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.4k views
Welcome To Ask or Share your Answers For Others

1 Answer

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...