©
This document uses PHP Chinese website manual Release
在元素<p>上水平滑动隐藏它:
效果预览 »$("p").on("swipe",function(){
$(this).hide();
});
swipe事件在水平方向上拖动30px以上会触发该事件, (垂直方向小于75px)。
提示: 你可以在左右两个方向上快速滑动。
相关事件:
$("selector").on("swipe",function(event){...})
参数 | 描述 |
---|---|
function(event) | 必须。指定 swipe 事件触发时执行的函数。 该函数有可选的事件对象 ,事件对象可以是任何 jQuery 事件属性 (例如 event.target, event.type, 等)。更多信息请查阅 jQuery 事件参考手册 。 |
事件对象
使用 event.target 属性返回swipe事件触发的DOM元素。