如何调用滑动事件?我想在滑动中触发一个事件。以下代码在普通查询事件中正常工作。不知道如何在流星事件中实现。
$('.your-class').on('swipe', function(event, slick, direction){
console.log(direction);
});
在流星中:
Template.template.events({
'???? .your-class':function(event, slick, direction){
console.log(event);
}
});
答案 0 :(得分:0)
尝试hammer:hammer包。
这是Events
Template.NAME.events({
'swipeleft #hammerDiv': function(e, t) {
e.preventDefault();
// event
},
'swiperight #hammerDiv': function(e, t) {
e.preventDefault();
// event
}
});