admin管理员组文章数量:1345011
I am running into issues with getting Hammer.js (with the jQuery plugin) to function properly when using swiperight
. Therefore, I need to use panright
.
When panning to the right, my event fires many, many times.
How can this be updated so it only runs once? (then again when the user swipes to the right or left on another slide)
$('.slide').hammer().on('panright', doSomething);
I am running into issues with getting Hammer.js (with the jQuery plugin) to function properly when using swiperight
. Therefore, I need to use panright
.
When panning to the right, my event fires many, many times.
How can this be updated so it only runs once? (then again when the user swipes to the right or left on another slide)
$('.slide').hammer().on('panright', doSomething);
Share
Improve this question
edited Nov 9, 2019 at 18:37
Brian Tompsett - 汤莱恩
5,89372 gold badges61 silver badges133 bronze badges
asked Jan 7, 2015 at 3:53
CofeyCofey
11.4k16 gold badges54 silver badges75 bronze badges
1
- FWIW, I found I was getting multiple Hammer events firing because I'd inadvertently installed multiple handlers for the same event. Worth checking that your control flow's not doing the same. – Velojet Commented Jan 18, 2019 at 22:45
3 Answers
Reset to default 9I think you should capture a panend event. For example:
var myElement = document.getElementById('myID');
var mc = new Hammer.Manager(myElement);
mc.add(new Hammer.Pan({direction:Hammer.DIRECTION_HORIZONTAL, threshold:80, pointers: 0}));
mc.on("panend", function(ev) {
if(ev.direction == Hammer.DIRECTION_RIGHT)
{
//do what you want here
}
});
You can filter the event by isFinal property:
var mc = new Hammer($('.screen'));
mc.on("swipeleft", moveHandler);
mc.on("swiperight", moveHandler);
function moveHandler(event){
if(event.isFinal){
// do something on the last animation frame
}
}
There are other events called 'swipeleft' and 'swiperight'. This will respond to 1 swipe event instead of pan's multiple fired events.
var mc = new Hammer($('.screen'));
mc.on("swipeleft", moveHandler);
mc.on("swiperight", moveHandler);
function moveHandler(event){
// do something
}
Documentation
本文标签: javascriptHow to fire method only once when using panright with HammerjsStack Overflow
版权声明:本文标题:javascript - How to fire method only once when using panright with Hammer.js? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743777457a2537239.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论