var maxTime = 100000, // allow movement if < 1000 ms (1 sec)
maxDistance = 50, // swipe movement of 50 pixels triggers the swipe
target = $('#gallery ul'),
startX = 0,
startTime = 0,
touch = "ontouchend" in document,
startEvent = (touch) ? 'touchstart' : 'mousedown',
moveEvent = (touch) ? 'touchmove' : 'mousemove',
endEvent = (touch) ? 'touchend' : 'mouseup';
target.bind(startEvent, function(e){
e.preventDefault();
// prevent image drag (Firefox)
startTime = e.timeStamp;
startX = e.originalEvent.touches ? e.originalEvent.touches[0].pageX : e.pageX;
}).bind(moveEvent, function(e){
e.preventDefault();
var currentX = e.originalEvent.touches ? e.originalEvent.touches[0].pageX : e.pageX,
currentDistance = (startX === 0) ? 0 : Math.abs(currentX - startX),
// allow if movement < 1 sec
currentTime = e.timeStamp;
if (startTime !== 0 && currentTime - startTime < maxTime && currentDistance > maxDistance) {
if (currentX < startX) {
galleryNext();
}
if (currentX > startX) {
galleryPrev();
}
startTime = 0;
startX = 0;
}
}).bind(endEvent, function(e){
startTime = 0;
startX = 0;
});
这是我修改的脚本,以便它运行函数以切换到滚动元素中的下一个图像。我需要它做的是像 iPhone 画廊一样操作,当我移动它时,元素会随着我的手指滚动,并且在释放时要么转到下一张图像,要么在 touchend 事件中将当前图像带回视图。我尝试在事件之间切换功能并删除 preventDefault 以允许自然滚动,然后尝试应用这些功能,但这允许元素像往常一样连续滚动,这不是我想要的。
有谁能帮忙吗?提前致谢。