window.addEventListener("swiperight", function() {
mui.back();
});
var commentPage = null;
window.addEventListener("swipeleft", function(e) {
if (!commentPage) {
commentPage = plus.webview.getWebviewById('news_comment');
}
mui.fire(commentPage, 'commentId', {
id: id
});
mui.openWindow({
id: 'news_comment'
});
});
打开新闻详细页,向右滑出,向左滑会显示评论页面
我在iPhone5S的机子上测试,上下滑动内容的时候会无意间促发左右滑动的事件,为什么左右滑动的事件会这么灵敏。
有没有办法可以判断左右滑动的距离 然后再做相应的操作
2 个回复
春色撩人 (作者)
没有人帮我回答这个问题吗?
DCloud_UNI_FXY
自己对e.detail.angle角度进行判定