我在 Sencha Touch 2 中使用轮播。如何处理向左滑动和向右滑动事件?
问问题
6124 次
1 回答
12
一种方法是监听轮播项目上的滑动事件,同时使用 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");
}
}
});
}
}
于 2013-04-04T13:34:52.323 回答