gpt4 book ai didi

sencha-touch-2 - 在 Sencha Touch 2 中处理滑动事件

转载 作者:行者123 更新时间:2023-12-04 06:52:37 26 4
gpt4 key购买 nike

我在 Sencha Touch 2 中使用轮播。如何处理向左滑动和向右滑动事件?

最佳答案

一种方法是听 swipe使用 Ext.event.Event.direction 在您的轮播项目上发生事件处理你的滑动方向:

listeners: {
initialize: function(c) {
this.element.on({
swipe: function(e, node, options) {
if(e.direction == "left") {
alert("Hey! I swipe left");
} else {
alert("Hey! I swipe right");
}
}
});
}
}

工作演示: http://www.senchafiddle.com/#TLBZB

关于sencha-touch-2 - 在 Sencha Touch 2 中处理滑动事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15811465/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com