溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

fastclick.js --- 解決移動(dòng)端點(diǎn)擊事件300ms延時(shí)

發(fā)布時(shí)間:2020-06-03 19:10:02 來(lái)源:網(wǎng)絡(luò) 閱讀:5778 作者:frwupeng517 欄目:移動(dòng)開(kāi)發(fā)

Fast Click 是一個(gè)簡(jiǎn)單、易用的庫(kù),專為消除移動(dòng)端瀏覽器從物理觸摸到觸發(fā)點(diǎn)擊事件之間的300ms延時(shí)。


為什么會(huì)存在延遲呢?

從你觸摸按鈕到觸發(fā)點(diǎn)擊事件,移動(dòng)端瀏覽器會(huì)等待接近300ms,原因是瀏覽器會(huì)等待以確定你是否執(zhí)行雙擊事件


兼容性

  • Mobile Safari on iOS 3 and upwards

  • Chrome on iOS 5 and upwards

  • Chrome on Android (ICS)

  • Opera Mobile 11.5 and upwards

  • Android Browser since Android 2

  • PlayBook OS 1 and upwards


何時(shí)不需要使用

1、FastClick 不會(huì)伴隨監(jiān)聽(tīng)任何桌面瀏覽器

2、Android 系統(tǒng)中,在頭部 meta 中設(shè)置 width=device-width 的Chrome32+ 瀏覽器不存在300ms 延時(shí),所以,也不需要

<meta name="viewport" content="width=device-width, initial-scale=1">


3、同樣的情況也適用于 Android設(shè)備(任何版本),在viewport 中設(shè)置 user-scalable=no,但這樣就禁止縮放網(wǎng)頁(yè)了


4、IE11+ 瀏覽器中,你可以使用 touch-action: manipulation;  禁止通過(guò)雙擊來(lái)放大一些元素(比如:鏈接和按鈕)。IE10可以使用 -ms-touch-action: manipulation



使用方法

在 HTML 頁(yè)面中引入 fastclick.js

<script type='application/javascript' src='/path/to/fastclick.js'></script>


script 文件必須在頁(yè)面元素 實(shí)例化 FastClick 之前加載


在 body 上實(shí)例化 FastClick ,推薦按照如下方法使用:

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


如果你使用的是 jQuery

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


如果你使用的是 Browserify 或其他 CommonJS 風(fēng)格的模塊系統(tǒng),FastClick.attach 方法會(huì)在你調(diào)用 require('fastclick') 之后返回。所以,使用 FastClick 最簡(jiǎn)單的方法如下:

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


示例:

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="format-detection" content="telephone=no"/>
    <meta name="format-detection" content="email=no"/>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title></title>
    <!--[if lt IE 9]>
      <script src="http://cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script>
      <script src="http://cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
    <![endif]-->
    <style>
        a{
            text-decoration: none;
            color:black;
        }
    </style>
</head>
<body>
<a href="#">鏈接</a>

<script src="resources/js/jquery-1.8.3.min.js"></script>
<script src="resources/js/fastclick.js"></script>
<script>
    $(function() {
        FastClick.attach(document.body);
    });
    $('a').click(function(e){
        e.preventDefault();
        $(this).css('color','red');
    });


</script>
</body>
</html>


通過(guò)手機(jī)來(lái)運(yùn)行這段代碼,使用FastCick事件,可以很明顯看到,點(diǎn)擊鏈接文字變紅時(shí)沒(méi)有了閃爍效果


Github地址:https://github.com/ftlabs/fastclick



向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI