I have created an inline list of buttons in a banner that extends off the screen. I am looking to implement a swipe feature so users can easily navigate through the buttons that are not visible on the screen.
<style>
.banner-test {
// styling properties
}
.ui-btn {
// button styling properties
}
// other CSS classes and styles
</style>
<div class="banner-test">
<div class="swiper-holder">
// buttons
</div>
</div>
Can this functionality be achieved using jQuery? I have come across touchend and touchstart events but unsure where to begin implementing them. Will this be compatible with most browsers?
After searching online, I have not been able to find any similar implementations or examples.
Fiddle: https://jsfiddle.net/ye2q5ede/