甘肃园区网络搭建,重庆seo整站优化报价,韩国电信 网站,商务网站建设与维护论文在我们PC端中有许多的事件#xff0c;那我们在移动端有没有事件呢#xff1f;让我为大家介绍一下移动端常用的事件#xff0c;触屏事件 触屏事件 touch (也称触摸事件)#xff0c;Android 和IOS 都有 touch 对象代表一个触摸点。触摸点可能是一根手指#xff0c;也可能是一…在我们PC端中有许多的事件那我们在移动端有没有事件呢让我为大家介绍一下移动端常用的事件触屏事件 触屏事件 touch (也称触摸事件)Android 和IOS 都有 touch 对象代表一个触摸点。触摸点可能是一根手指也可能是一根触摸笔。触屏事件可响应用户手指(或触控笔)对屏幕或者触控板操作。
常见的触屏事件
触屏touch事件说明touchstart手指触摸到一个 DOM 元素时触发touchmove手指在一个 DOM元素上滑动时触发touchend手指从一个 DOM元素上移开时触发
touchstart
!DOCTYPE html
html langen
headmeta charsetUTF-8title/titlestyle.box {width: 400px;height: 400px;background-color: red;}/style
/head
bodydiv classbox/div
/body
scriptconst div document.querySelector(.box)div.ontouchstart function(){console.log(触摸了一下)}
/script
/htmltouchmove const div document.querySelector(.box)div.ontouchmove function(){console.log(一直在触摸)}touchend const div document.querySelector(.box)div.ontouchend function(){console.log(触摸结束)}感谢大家的阅读如有不对的地方可以向我提出感谢大家