首页
会员中心
到顶部
到尾部
jQuery Mobile 教程

jQuery Mobile Touch 事件

时间:2020/11/2 13:13:08  作者:  来源:  查看:0  评论:0
内容摘要:jQuery Mobile Touch 事件jQuery Mobile 事件jQuery Mobile 滚动Touch 事件在用户触摸屏幕(页面)时触发。提示:Touch 事件同样适用于桌面电脑:点击鼠标!jQuery Mobile Taptap 事件在用户敲击某个元素时触发。下...

jQuery Mobile Touch 事件

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

提示:Touch 事件同样适用于桌面电脑:点击鼠标!

jQuery Mobile Tap

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

下面的例子当 <p> 元素上触发 tap 事件时,隐藏当前 <p> 元素:

实例

$("p").on("tap",function(){  $(this).hide();});

亲自试一试

jQuery Mobile Taphold

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

实例

$("p").on("taphold",function(){  $(this).hide();});

亲自试一试

jQuery Mobile Swipe

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

实例

$("p").on("swipe",function(){  $("span").text("Swipe detected!");});

亲自试一试

jQuery Mobile Swipeleft

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

实例

$("p").on("swipeleft",function(){  alert("You swiped left!");});

亲自试一试

jQuery Mobile Swiperight

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

实例

$("p").on("swiperight",function(){  alert("You swiped right!");});

亲自试一试



相关评论
广告联系QQ:45157718 点击这里给我发消息 电话:13516821613 杭州余杭东港路118号雷恩国际科技创新园  网站技术支持:黄菊华互联网工作室 浙ICP备06056032号