var startY = 0;
var endY = 0;
var threshold = 100; // 定义阈值,当手指滑动距离超过该值,则触发刷新操作
$(document).on('touchstart', function(e) {
startY = e.originalEvent.changedTouches[0].pageY;
});
$(document).on('touchend', function(e) {
endY = e.originalEvent.changedTouches[0].pageY;
if (endY - startY > threshold) { //手指滑动距离超过阈值,则刷新页面
location.reload();
}
});
|