#jquery #photoswipe
#jquery #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');
});
но оно не улавливает событие?
Ответ №1:
Вот решение:
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;
}
});