JS如何利用定时器实现长按事件
本篇文章由:http://xinpure.com/js-how-to-use-timer-press-event/
JS 原生事件并没有长按事件,但是我们可以利用一些原有的事件,来实现长按事件
任务需求
最近在工作上遇到一个特殊的需求,就是需要实现长按来增加或者减少数值
这就类似于,购物车中的物品数量的加减按钮,单击按钮物品数量相应增加或者减少一个数量,利用长按来实现快速增加或者减少物品数量
思考方法
在知道这个需求之后,开始还是比较茫然的
虽然在之前我也在一些购物 APP 里见到过这种长按的功能,但是在 JS 里似乎并没有长按事件
后来我就在想,怎么样利用现有的一些事件来实现这一功能呢?
这个时候我想到了 mousedown
和 mouseup
这两个事件
当时我就想,如果在 mousedown
事件触发的时候,利用 setTimeout
或者 setInterval
定时增加或者减少数值
然后在 mouseup
事件触发的时候,利用 clearTimeout
或者 clearInterval
清除定时器
这样是不是就能实现这样的需求呢?
实践想法
既然有了想法,就要付诸实践
我写了个例子来测试这个想法,结果却并没有想得这么简单
当我通过鼠标按住按钮之后,数值是不断的增加或者减少,但是即使我松开鼠标,数值却并没有停止,而是依然为不断的增加或者减少
这时我就疑惑了,理论上说,在 mouseup
事件触发之后,定时器应该是已经被清除的,为何没有清除呢?
带着疑惑,我开始了 Google
Google
将我指引到了 Jquery Mobile 库
这个类库实现了一个 taphold
事件,就是我想要的长按事件
既然已经有了类似的实现,我就在想,是不是我哪里想错了?
然后我就查看了 Jquery Mobile
关于 taphold
的源码
看完源码后,我惊喜的发现,原来他也是利用 setTimeout
来实现的这一事件,证明我的想法是对的!
带着惊喜,我开始分析我思考的不足的地方。
最后我发现,原来是我没有做好对事件的监听
我只是单纯的绑定了 mousedown
和 mouseup
两个事件,这是我在 JS 事件处理上的不足
完善实现
知道了问题之后,我就开始修改之前写的例子
采用 Jquery Mobile
库对事件的处理方式,来实现这个长按的功能,并且也根据自身的需求进行修改
在修改的过程中,我发现了一个问题,就是当我长按一个按钮的时候,如果我移动鼠标,长按事件也会一直持续下去,并且放开鼠标也不会停止
在翻看 JS 事件的之后,我找到了 mouseleave
这个事件,就是当鼠标离开按钮之后,会触发这个事件,加上之后,问题也得己解决。
为了兼容移动设备,我加上了对 touchstart
、touchend
、touchcencel
几个事件的监听
本来也想加上 touchleave
事件,来处理触摸时用户移动到按钮外的情况,但是似乎这个事件已经被废弃掉了:
This event was a proposal in an early version of the specification and has not been implemented. Do not rely on it. —— MDN
也尝试了使用 touchmove
事件来代替,但是似乎会影响用户体验
因为添加了这个事件之后,就算是在按钮上触摸移动,也会触发 touchmove
事件
所以如果是用户误操作的话,也会中止长按操作。
不过,touch
事件并不会像 mouse
事件一样,触摸移动到按钮外之后再放开手指,事件还是可以正常处理,并不会影响使用
最终代码
JS Code
var tapParams = {
timer: {},
element: {},
tapStartTime: 0,
type: 'increment'
};
function clearTapTimer() {
clearTimeout(tapParams.timer);
}
function clearTapHandlers() {
clearTapTimer();
$(tapParams.element).unbind('mouseup', clearTapTimer)
.unbind('mouseleave', clearTapHandlers);
/* 移动设备 */
$(tapParams.element).unbind('touchend', clearTapTimer)
.unbind('touchcencel', clearTapHandlers);
}
function tapEvent(aEvent, aType) {
/* 阻止默认事件并解除冒泡 */
aEvent.preventDefault();
aEvent.stopPropagation();
tapParams = {
element: aEvent.target,
startTime: new Date().getTime() / 1000,
type: aType
};
$(tapParams.element).bind('mouseup', clearTapTimer)
.bind('mouseleave', clearTapHandlers);
/* 移动设备 */
$(tapParams.element).bind('touchend', clearTapTimer)
.bind('touchcencel', clearTapHandlers);
changeNumber();
}
function changeNumber() {
var currentDate = new Date().getTime() / 1000;
var intervalTime = currentDate - tapParams.startTime;
/* 根据长按的时间改变数值变化幅度 */
if (intervalTime < 1) {
intervalTime = 0.5;
}
var secondCount = intervalTime * 10;
if (intervalTime == 3) {
secondCount = 50;
}
if (intervalTime >= 4) {
secondCount = 100;
}
var numberElement = $('.number');
var currentNumber = parseInt(numberElement.val());
if (tapParams.type == 'increment') {
currentNumber += 1;
} else if (tapParams.type == 'decrement') {
currentNumber -= 1;
}
numberElement.val(currentNumber <= 0 ? 1 : currentNumber);
tapParams.timer = setTimeout('changeNumber()', 1000 / secondCount);
}
HTML Code
<div class="container">
<div class="section">
<div class="decrement" onmousedown="tapEvent(event, 'decrement')" ontouchstart="tapEvent(event, 'decrement')">-</div>
<input class="number" value="1">
<div class="increment" onmousedown="tapEvent(event, 'increment')" ontouchstart="tapEvent(event, 'increment')">+</div>
</div>
</div>
CSS Code
.section {
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
justify-content: center;
-webkit-flex-flow: row nowrap;
flex-flow: row nowrap;
-webkit-align-items: center;
align-items: center;
height: 30px;
width: 130px;
font-size: 16px;
}
.number {
-webkit-flex: 1;
flex: 1;
width: 30px;
height: 30px;
border: 1px solid #000;
display: inline-block;
border-radius: 5px;
margin: 0 10px;
text-align: center;
}
.decrement, .increment {
width: 30px;
height: 30px;
border: 1px solid #000;
display: inline-block;
border-radius: 5px;
text-align: center;
line-height: 28px;
cursor: pointer;
font-size: 20px;
}
效果展示
JS如何利用定时器实现长按事件的更多相关文章
- 【转】原生js实现移动端h5长按事件
$("#target").on({ touchstart: function(e) { // 长按事件触发 timeOutEvent = setTimeout(function() ...
- cocos2d-x C++ (利用定时器自定义屏幕双击事件函数)
//GameScene.h #include "cocos2d.h" USING_NS_CC; class GameScene : public cocos2d::Layer { ...
- webview长按事件js监听
做app开发时,用到了webview,需要监听webview的长按事件,使用原生的js处理监听如下: ; //定时器 //开始按 function gtouchstart() { timeOutEve ...
- js 触发长按事件
为网站添加触摸功能 <button id="btn1">长按触发</button> <button id="btn2">长按 ...
- VUE长按事件
PS:在开发中常常会有长按事件的需求,这里我简单的介绍几种长按事件的需求 需求一:长按数字累加或者累减 HTML: <div class="mui-numbox" data- ...
- js中对arry数组的各种操作小结 瀑布流AJAX无刷新加载数据列表--当页面滚动到Id时再继续加载数据 web前端url传递值 js加密解密 HTML中让表单input等文本框为只读不可编辑的方法 js监听用户的键盘敲击事件,兼容各大主流浏览器 HTML特殊字符
js中对arry数组的各种操作小结 最近工作比较轻松,于是就花时间从头到尾的对js进行了详细的学习和复习,在看书的过程中,发现自己平时在做项目的过程中有很多地方想得不过全面,写的不够合理,所以说啊 ...
- 移动端H5长按事件 vue自定义指令
import Vue from 'vue' Vue.directive('longpress', function (el, binding){ var timer = null; var start ...
- 移动端h5模拟长按事件
为啥写这篇文章 最近接了个需求,要求长按某个标签显示删除一个悬浮的删除按钮.这个需求其实在app上很常见,但是在移动端h5中,我们没有长按的事件,所以就需要自己模拟这个事件了. 大概效果如下: ps: ...
- 微信小程序区分点击,长按事件
在上代码之前,微信小程序点击事件,长按事件的触发顺序需要我们了解一下下 事务分类 touchstart:手指触摸 longtap:手指触摸后后,超过350ms离开 touchend:手指触摸动作结束 ...
随机推荐
- Java获取电脑IP、MAC、各种版本
Java代码获取电脑IP.MAC.各种版本 package com.rapoo.middle.action; import java.io.BufferedReader; import java.io ...
- Matlab注释多行和取消多行注释的快捷键
matlab里注释符号是%,只是单行注释,可是没有多行注释符号,就像C/C++/Java中都有多行注释符号/* */. 如果利用单行注释的方式手工注释一段程序会很麻烦,matlab软件自带快捷键支持 ...
- Common Internet File System
CIFS (Common Internet File System) is a protocol that gained popularity around the year 2000, as ven ...
- Spring Validation
Spring Validation模块用于表单数据验证配置,示例如下 依赖Jar包 <dependency> <groupId>javax.validation</gro ...
- 数学图形之克莱因瓶(klein bottle)
克莱因瓶是一种内外两面在同一个曲面上的图形. 在数学领域中,克莱因瓶(德语:Kleinsche Flasche)是指一种无定向性的平面,比如二维平面,就没有“内部”和“外部”之分.克莱因瓶最初的概念提 ...
- libcurl使用easy模式阻塞卡死等问题的完美解决---超时设置
libcurl使用时疑难问题: 在使用libcurl时, jwisp发现, curl_easy_perform是阻塞的方式进行下载的, curl_easy_perform执行后,程序会在这里阻塞等待下 ...
- vue-router路由模式详解
一.路由模式解析 要讲vue-router的路由模式,首先要了解的一点就是路由是由多个URL组成的,使用不同的URL可以相应的导航到不同的位置. 如果有进行过服务器开发或者对http协议有所了解就会知 ...
- spring data 自定义查询
spring data 自定义查询 https://www.cnblogs.com/airycode/p/6535635.html 在方法接口上面使用@Query
- /etc/rc.d/init.d/functions文件详细分析
/etc/rc.d/init.d/functions文件详细分析 functions这个脚本是给/etc/init.d里边的文件使用的(可理解为全局文件). 提供了一些基础的功能,看看里边究竟有些什么 ...
- iOS 怎样更新APP
app更新的流程思想 得到当前版本currentVersion,将currentVersion与近期的版本latestVersion进行比較,若当前currentVersion较小.进行更新操作. 获 ...