移动端事件库
fastclick.js
- 解决CLICK事件300MS的延迟
touch.js / hammer.js
-
- touch实现单击双击12345678910var 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实现单击双击