JavaScript ---- fastclick解决IOS点击300毫秒延迟

又做到一个点击的H5的小游戏 苹果不能连续点

想起来以前做的打地鼠游戏 XC面试官问我怎么解决的

可惜当时都不知道


引用




js调用

if ('addEventListener' in document) {  
    document.addEventListener('DOMContentLoaded', function() {  
        FastClick.attach(document.body);  
    }, false);  
}  

jq调用

$(function() {  
    FastClick.attach(document.body);  
});  


 如果你使用Browserify或者其他CommonJS-style 系统,当你调用`require('fastclick')`时,`FastClick.attach`事件会被返回,加载FastClick最简单的方式就是下面的方法了:

var attachFastClick = require('fastclick');  
attachFastClick(document.body);  


你可能感兴趣的:(JS)