多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
#### 手势事件 | 手势事件 | 事件相详解 | | --- | --- | | **touchstart** | **当手指接触屏幕时触发** | | **touchmove** | **当已经接触屏幕的手指开始移动的时候触发** | | **touchend** | **当手指离开屏幕时触发** | ~~~javascript window.addEventListener('load', function () { document.addEventListener('touchstart', function (e) { console.log("触发事件:touchstart"); }) document.addEventListener('touchend', function () { console.log("触发事件:touchend"); }); document.addEventListener('touchmove', function () { console.log("触发事件:touchmove"); }); }); ~~~