美文网首页
touch.js的使用总结

touch.js的使用总结

作者: 空谷悠 | 来源:发表于2017-02-08 19:08 被阅读1713次

    touch.js手机端的操作手势

    基本事件:

    touchstart  //手指刚接触屏幕时触发

    touchmove    //手指在屏幕上移动时触发

    touchend     //手指从屏幕上移开时触发

    touchcancel  //触摸过程被系统取消时触发(少用)


    一、事件绑定

    touch.on(element,types,callback);

    参数描述:

    element   element或string    元素对象、选择器

    types  string 事件的类型(多为手势事件),可接受多个事件以空格分开;支持原生事件的透传

    callback    function  事件处理函数, 移除函数与绑定函数必须为同一引用;


    二、部分手势事件

    1、缩放

    pinchstart缩放手势起点

    pinchend缩放手势终点

    pinch缩放手势

    pinchin收缩

    pinchout放大

    2、旋转

    rotateleft向左旋转

    rotateright向右旋转

    rotate旋转

    3、滑动

    swipestart滑动手势起点

    swiping滑动中

    swipeend滑动手势终点

    swipeleft向左滑动

    swiperight向右滑动

    swipeup向上滑动

    swipedown向下滑动

    swipe滑动

    4、拖动

    拖动开始    dragstart拖动屏幕

    拖动           drag拖动手势

    拖动结束     dragend拖动屏幕

    5、长按

    hold    长按屏幕

    6、敲击

    tap单击屏幕

    doubletap双击屏幕


    三、部分事件处理函数

    originEvent触发某事件的原生对象

    type事件的名称

    rotation旋转角度

    scale缩放比例

    direction操作的方向属性

    fingersCount操作的手势数量

    position相关位置信息, 不同的操作产生不同的位置信息

    distance               swipe类两点之间的位移

    distanceX, x           手势事件x方向的位移值, 向左移动时为负数

    distanceY, y          手势事件y方向的位移值, 向上移动时为负数

    angle            rotate事件触发时旋转的角度

    duration                  touchstart 与 touchend之间的时间戳

    factor             swipe事件加速度因子

    startRotate启动单指旋转方法,在某个元素的touchstart触发时调用


    四、练习

    <script    src="http://touch.code.baidu.com/touch-0.2.14.min.js"></script>

    <body>

    <div id="playarea">

    <img     id="target"draggable="false"    src="img/cloud.png"     class="show">

    </div>

    </body>

    》单击tap,双击doubletap,长按hold

    touch.on('#target', 'hold tap doubletap', function(ev){  }//多个手势同个效果,用空格隔开即可

    小案例 小案例

    五、事件配置


    六、

    相关文章

      网友评论

          本文标题:touch.js的使用总结

          本文链接:https://www.haomeiwen.com/subject/ylnvittx.html