


This article mainly introduces the basics of js mobile events and common event libraries in detail. It has certain reference value. Interested friends can refer to it
1. Event Basics
PC: click, mouseover, mouseout, mouseenter, mouseleave, mousemove, mousedown, mouseup, mousewheel, keydown, keyup, load, scroll, blur, focus, change...
Mobile terminal: click (click), load, scroll, blur, focus, change, input (replacing keyup, keydown)...TOUCH event model (processing single-finger operations), GESTURE event model (processing multi-finger operations)
TOUCH: touchstart, touchmove, touchend, touchcancel
GESTURE: gesturestart, gesturechange, gestureend
1. Click: On the mobile side, click is a click event, not a click event. In mobile projects, we often distinguish between what a click does and what a double-click does. Therefore, when the mobile browser recognizes a click, it will only execute it after confirming that it is a click:
On the mobile side There will be a 300ms delay when using click: after the first click is completed, the browser needs to wait 300ms to see whether the second click is triggered. If the second click is triggered, it is not a click, and the second click is not triggered. It belongs to click
The following code is the code to simulate the click time on the mobile side
function on(curEle,type,fn){ curEle.addEventListener(type,fn,false); } var oBox = document.querySelector('.box'); //移动端采用click存在300ms延迟 // oBox.addEventListener('click',function(){ // this.style.webkitTransform = 'rotate(360deg)' // },false) //使用TOUCH事件模型实现点击操作(单击&&双击) on(oBox,'touchstart',function(ev){ //ev:TouchEvent事件 属性 type、target、preventDefault(returnValue)、stopPropagation、changedTouches、touches //changedTouches和touches都是手指信息的集合(touchList),touches获取到值的必要条件只有手指还在屏幕上才可以获取,所以在touchend事件中如果想获取手指离开的瞬间坐标只能使用changedTouches获取 var point = ev.touches[0]; this['strX'] = point.clientX; this['strY'] = point.clientY; this['isMove'] = false; }) on(oBox,'touchmove',function(ev){ var point = ev.touches[0]; var newX = point.clientX, newY = point.clientY; //判断是否发生滑动,我们需要判断偏移的值是否在30PX以内 if(Math.abs(newX-this['strX'])>30 || Math.abs(newY-this['strY'])>30){ this['isMove'] = true; } }) on(oBox,'touchend',function(ev){ if(this['isMove'] === false){ //没有发生移动 点击 this.style.webkitTransitionDuration = '1s'; this.style.webkitTransform = 'rotate(360deg)'; var delayTimer = window.setTimeout(function(){ this.style.webkitTransitionDuration = '0s'; this.style.webkitTransform = 'rotate(0deg)'; }.bind(this),1000); }else{ //滑动 this.style.background = 'red'; } })
At the same time, fastclick.js can also be used to solve the 300ms of the click event on the mobile side. Delay (github address https://github.com/zhouxiaotian/fastclick)
2. Click, click, double-click, long press, slide, slide left, slide right, slide up, slide down
Click and double-click (300MS)
Click and long press (750MS)
Click and slide (whether the X/Y axis offset distance is within 30PX, if it exceeds 30PX, it is sliding)
Swipe left and right and slide up and down (X-axis offset distance > Y-axis offset distance = Left and right slides, the opposite is up and down)
Left slide and right slide (Offset distance >0 = Swipe right (the opposite is swipe left)
2. Commonly used event libraries
FastClick.js: Solve the 300MS delay of CLICK event
TOUCH.js: Baidu Cloud Mobile Gesture Library GitHub address https://github.com/Clouda-team/touch.code.baidu.com
The examples are as follows:
var oBox = document.querySelector('.box'); //单击 touch.on(oBox,'tap',function(ev){ this.style.webkitTransitionDuration = '1s'; this.style.webkitTransform = 'rotate(360deg)'; var delayTimer = window.setTimeout(function(){ this.style.webkitTransitionDuration = '0s'; this.style.webkitTransform = 'rotate(0deg)'; window.clearTimeout(delayTimer) }.bind(this),1000) }) //双击 touch.on(oBox,'doubletap',function(ev){ this.style.webkitTransitionDuration = '1s'; this.style.webkitTransform = 'rotate(-360deg)'; var delayTimer = window.setTimeout(function(){ this.style.webkitTransitionDuration = '0s'; this.style.webkitTransform = 'rotate(0deg)'; window.clearTimeout(delayTimer) }.bind(this),1000) }) //长按 touch.on(oBox,'hold',function(ev){ this.style.backgroundColor = 'red'; })
HAMMER.js
Zepto.js: Known as the small JQ on the mobile side, JQ is used on the PC side, so the code contains a lot of compatibility with low-version IE browsers Processing, and ZEPTO is only used in mobile development, so there is no support for lower versions of IE on the basis of JQ
JQ provides a lot of selector types and DOM operation methods, but ZEPTO only implements Some commonly used selectors and methods. For example: the animation methods in JQ include animate, hide, show, fadeIn, fadeOut, fadeToggle, slideDown, slideUp, slideToggle... but in ZEPTO there is only animate
The source code size of ZEPTO is much smaller than that of JQ
ZEPTO was specially developed for mobile terminals, so it is more suitable for mobile terminals than JQ:
ZEPTO’s animate animation method supports the operation of CSS3 animations
ZEPTO is specialized for mobile terminals We have prepared commonly used event operations on mobile terminals: tap, singleTap, doubleTap, longTap, swipe, swipeUp, swipeDown, swipeLeft, swipeRight
The example code is as follows:
$('.box').singleTap(function(ev){ $(this).animate({ rotate:'360deg' },1000,'linear',function(){ this.style.webkitTransform = 'rotate(0)' }) }) $('.box').on('touchstart',function(){ $(this).css('background','red') }) $.ajax({ url:'', type:'get', dataType:'json', cache:false, success:function(){ } })
The above is the detailed content of Detailed introduction to the basics of JavaScript mobile events and a summary of commonly used event libraries. For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version
SublimeText3 Linux latest version

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Atom editor mac version download
The most popular open source editor

SublimeText3 Mac version
God-level code editing software (SublimeText3)
