touchmove 实时获取当前元素

Posted mrt_yy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了touchmove 实时获取当前元素相关的知识,希望对你有一定的参考价值。

var ele = document.elementFromPoint(touch.pageX, touch.pageY);   //根据坐标直接返回元素document.elementFromPoint()

 

eg:


    $("ul li").on("touchmove touchstart", function(e) {
     event.preventDefault();
     e = e || window.event;
     var touch = e.originalEvent.targetTouches[0];
     var ele = document.elementFromPoint(touch.pageX, touch.pageY);
    });

以上是关于touchmove 实时获取当前元素的主要内容,如果未能解决你的问题,请参考以下文章

20.【Web API】——移动端网页特效(2020-09-13)

js 弹出框 里面元素touchmove时候阻止其他元素滚动,背景遮罩层还无法阻止冒泡,怎么禁用遮罩层touchmove

如何单击应该在“touchmove”事件中消失的元素?

触摸事件

JS移动端获取触控位置

获取touchstart,touchmove,touchend 坐标