0
photoswipe에서 스 와이프 이벤트를 캡처하는 방법은 무엇입니까? Photoswipe 캡처 스 와이프 이벤트
나는 시도는 다음 ...var pSwipe = window.Code.PhotoSwipe.attach($(arrGallery), options);
pSwipe.show(0);
pSwipe.addEventHandler(window.Code.PhotoSwipe.ActionTypes.swipeLeft, function (e) {
alert('swipe left');
});
하지만 이벤트를 캐치하지 않는 이유는 무엇입니까?
var pSwipe = window.Code.PhotoSwipe.attach($(arrGallery), options);
pSwipe.show(0);
pSwipe.addEventHandler(window.Code.PhotoSwipe.EventTypes.onTouch, function (e) {
switch (e.action) {
case 'swipeDown':
alert('you swiped down');
break;
case 'swipeUp':
alert('you swiped up');
break;
}
});
: 여기