0

これは単純なことだと思いますが、現時点では複雑すぎます。

モバイル スライダーである Swipe.js は、スライドごとに多くの優れた情報を提供し、スライド中と最後に実行できる 2 つの関数を提供します。ユーザーは次のスライドまたは前のスライドにスクロールしています:

Swipe.js: https://github.com/bradbirdsall/Swipe

利用可能な機能:

window.mySwipe = new Swipe(document.getElementById('slider'), {
  callback: function(index, elem) {},
  transitionEnd: function(index, elem) {}
});

スワイプのシンプルな API

Swipe API
Swipe exposes a few functions that can be useful for script control of your slider.

prev() slide to prev

next() slide to next

getPos() returns current slide index position

getNumSlides() returns the total amount of slides

slide(index, duration) slide to set index position (duration: speed of transition in milliseconds)
4

2 に答える 2