Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
TouchSwipe(http://labs.skinkers.com/touchSwipe/)を使用しています。私の問題は、swipeStatusイベントコールバックの距離が2つのポイント(開始ドラッグポイントと現在のドラッグポイント)の間の距離であるということです。x距離またはy距離のみを個別に取得したいだけです。どうやって?
swipeStatus: function(event, phase, direction, distance)
イベント引数から x 座標と y 座標を取得できます。スワイプの場合は次のとおりです。
event.pageX event.pageY
ハッピーコーディング!