jquery有touch功能吗

WBOY
Libérer: 2022-06-09 18:27:21
original
2176 Les gens l'ont consulté

jquery中有touch功能;touch功能会在用户在触碰页面时触发:1、tap事件在用户敲击某个元素时触发;2、taphold事件在用户敲击某个元素并保持一秒时触发;3、swipe事件在用户在某个元素上水平滑动超过30px时触发;4、swipeleft事件在用户在某个元素上从左滑动超过30px时触发;5、swiperight事件在用户在某个元素上从右滑动超过30px时触发。

jquery有touch功能吗

本教程操作环境:windows10系统、jquery3.4.1版本、Dell G3电脑。

jquery有touch功能吗

Touch 事件在用户触摸屏幕(页面)时触发。

  • tap 事件在用户敲击某个元素时触发。

  • taphold 事件在用户敲击某个元素并保持一秒时被触发

  • swipe 事件在用户在某个元素上水平滑动超过 30px 时被触发:

  • swipeleft 事件在用户在某个元素上从左滑动超过 30px 时被触发:

  • swiperight 事件在用户在某个元素上从右滑动超过 30px 时被触发:

简单解释:

tap(轻击):一次快速完整的轻击后触发

taphold(轻击不放):轻击并不放(大约一秒)后触发

swipe(滑动):一秒内水平拖拽大于30PX,或者纵向拖曳小于20px的事件发生时触发的事件。多长时间拖拽多少px可以设置的。这个事件有其相关联的属性,分别为

  • scrollSupressionThreshold (默认: 10px) – 水平方向拖拽大于这个值,将不触发。

  • durationThreshold (默认: 1000ms) – 滑动时间超过这个数值就不会产生滑动事件。

  • horizontalDistanceThreshold (默认: 30px) – 水平划动距离超过这个数值才会产生滑动事件。

  • verticalDistanceThreshold (默认: 75px) – 竖直划动距离小于这个数值才会产生滑动事件。

swipeleft(左划):划动事件为向左的方向时触发

swiperight(右划):划动事件为向右的方向时触发

示例如下:

tap(轻击):一次快速完整的轻击后触发

$(function(){ $("#home").live('tap', function() { $('#toPage2').click(); // 为首页绑定点击事件 }); $("#page-2").live('tap', function() { $('#toHome').click(); // 为另一页面绑定点击事件 }); });
Copier après la connexion

taphold(轻击不放):轻击并不放(大约一秒)后触发

$(function(){ $("#home").live('taphole', function() { $('#toPage2').click(); // 为首页绑定长按事件 }); $("#page-2").live('taphole', function() { $('#toHome').click(); // 为另一页面绑定长按事件 }); });
Copier après la connexion

swipe(滑动) : 随便左右滑动

$(function(){ $("#home").live('swipe', function() { $('#toPage2').click(); // 为首页绑定滑动事件 }); $("#page-2").live('swipe', function() { $('#toHome').click(); // 为另一页面绑定滑动事件 }); });
Copier après la connexion

视频教程推荐:jQuery视频教程

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Recommandations populaires
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!