如果用户touchstart
在弹出框外点击 ( ),我想隐藏弹出框。
但是如果用户的意图是滚动/滑动(touchmove
),我不想隐藏弹出窗口。
代码如何检测和响应这两个操作(使用或不使用 jQuery)?
如果用户touchstart
在弹出框外点击 ( ),我想隐藏弹出框。
但是如果用户的意图是滚动/滑动(touchmove
),我不想隐藏弹出窗口。
代码如何检测和响应这两个操作(使用或不使用 jQuery)?
这是您如何执行此操作的基本示例:http: //jsfiddle.net/4CrES/2/
它背后的逻辑涉及检测初始触摸时间并将其保存到 var
touchTime = new Date();
在 touchend 处理程序中,从当前时间中减去这个时间以获得差异:
var diff = new Date() - touchTime;
使用 if 语句来决定触摸持续时间是否足够短以将其视为轻敲,或者足够长以将其视为拖曳。
if (diff < 100){
//It's a tap
}
else {
//Not a quick tap
}
您可以通过在处理程序中将初始触摸 y 位置与最终触摸 y 位置进行类似的差异来编写更强大的实现。另一种选择是比较滚动区域的scrollTop,看是否已经滚动。
由于点击事件不会在移动 Safari 上使 DOM 冒泡,而触摸事件和自定义事件会冒泡,因此我最近编写了一些代码来检测快速点击。
这是一个快速点击
如果触摸被确定为“quickTap”,TouchManager 会导致 DOM 中被触摸的元素发出自定义的“quickTap”事件,然后将 DOM 冒泡到碰巧正在侦听它的任何其他元素。此代码定义并创建了触摸管理器,它将立即准备就绪
缺点:
也许这是矫枉过正,但它是我正在处理的更大代码库的一部分。
/**
* Click events do not bubble up the DOM on mobile Safari unless the click happens on a link or form input, but other events do bubble up.
* The quick-tap detects the touch-screen equivalent of a click and triggers a custom event on the target of the tap which will bubble up the DOM.
* A touch is considered a click if there is a touch and release without any movement along the screen or any scrolling.
*/
var qt = (function ($) {
/**
* Modernizr 3.0.0pre (Custom Build) | MIT
* Modernizr's touchevent test
*/
var touchSupport = (function() {
var bool,
prefixes = ' -webkit- -moz- -o- -ms- '.split(' ')
if(('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch) {
bool = true;
} else {
var query = ['@media (',prefixes.join('touch-enabled),('),'heartz',')','{#modernizr{top:9px;position:absolute}}'].join('');
testStyles(query, function( node ) {
bool = node.offsetTop === 9;
});
}
return bool;
}()),
MobileTapEvent = 'tapEvent';
if(touchSupport) {
/* Create a new qt (constructor)*/
var startTime = null,
startTouch = null,
isActive = false,
scrolled = false;
/* Constructor */
function qt() {
var _qt = this,
context = $(document);
context.on("touchstart", function (evt) {
startTime = evt.timeStamp;
startTouch = evt.originalEvent.touches.item(0);
isActive = true;
scrolled = false;
})
context.on("touchend", function (evt) {
window.ct = evt.originalEvent['changedTouches'];
// Get the distance between the initial touch and the point where the touch stopped.
var duration = evt.timeStamp - startTime,
movement = _qt.getMovement(startTouch, evt.originalEvent['changedTouches'].item(0)),
isTap = !scrolled && movement < 5 && duration < 200;
if (isTap) {
$(evt.target).trigger('quickTap', evt);
}
})
context.on('scroll mousemove touchmove', function (evt) {
if ((evt.type === "scroll" || evt.type === 'mousemove' || evt.type === 'touchmove') && isActive && !scrolled) {
scrolled = true;
}
});
}
/* Calculate the movement during the touch event(s)*/
qt.prototype.getMovement = function (s, e) {
if(!s || !e) return 0;
var dx = e.screenX - s.screenX,
dy = e.screenY - s.screenY;
return Math.sqrt((dx * dx) + (dy * dy));
};
return new qt();
}
}(jQuery));
要使用代码,您可以将其添加到您的页面,然后只需监听 quickTap 事件。
<script type="text/javascript" src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<script type="text/javascript" src="quick-tap.js"></script>
<script type="text/javascript">
$(document).on('quickTap', function(evt, originalEvent) {
console.log('tap event detected on: ', evt.target.nodeName, 'tag');
});
</script>
evt是 quickTap 事件。
evt.target是被点击的 DOM 元素(不是 jQuery 对象)。
originalEvent是 qt 确定它是否是点击的 touchend 事件。
touchend
您可以在事件中隐藏 popup-div 。
如果touchstart
您记得 window.scrollY。
在touchend
事件中,如果scrollY
位置不同,则用户已经滚动。