所以我有一段代码记录用户用鼠标左右滑动或触摸移动设备时的日志。
不过,我需要做的是在该区域内的某些元素上停止此操作。因此,例如,此代码将记录我的 mainContainer 中的任何滑动
var maxTime = 1000,
// allow movement if < 1000 ms (1 sec)
maxDistance = 50,
// swipe movement of 50 pixels triggers the swipe
target = jQuery('#mainContainer'),
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) {
// prevent image drag (Firefox)
// e.preventDefault();
startTime = e.timeStamp;
startX = e.originalEvent.touches ? e.originalEvent.touches[0].pageX : e.pageX;
}).bind(endEvent, function(e) {
startTime = 0;
startX = 0;
}).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) {
console.log(startEvent);
if (currentX < startX) {
// swipe left code here
console.log("swipe left");
}
if (currentX > startX) {
// swipe right code here
console.log("swipe right");
}
startTime = 0;
startX = 0;
}
});
但是在 mainContainer 我有一些滑块,当它们移动时我不想获取日志(触发条件)。
我所有的滑块都有类滑块。
我正在考虑使用 if 语句来说明鼠标/触摸开始的位置是否在此类内,则该事件不会发生。也许这是错误的方法?
如果这是一个好方法 - 我怎么知道鼠标/触摸是否在这个区域?
谢谢