最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

移動(dòng)設(shè)備手勢(shì)事件庫(kù)Touch.js使用詳解

 更新時(shí)間:2017年08月18日 11:09:58   作者:漫彧明  
這篇文章主要介紹了移動(dòng)設(shè)備手勢(shì)事件庫(kù)Touch.js的使用方法,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

Touch.js手勢(shì)庫(kù)是專(zhuān)門(mén)在Webkit內(nèi)核瀏覽器的移動(dòng)設(shè)備中使用中設(shè)計(jì)的, Touch.js是移動(dòng)設(shè)備上的手勢(shì)識(shí)別與事件庫(kù)。Touch.js基于原生事件,支持事件代理, 性能更好,極簡(jiǎn)的API,秒速上手等優(yōu)勢(shì)。

1、旋轉(zhuǎn)事件- startRotate

var angle = 0;
touch.on('#target', 'touchstart', function(ev){
ev.startRotate();
ev.preventDefault();
});
touch.on('#target', 'rotate', function(ev){
var totalAngle = angle + ev.rotation;
if(ev.fingerStatus === 'end'){
angle = angle + ev.rotation;
}
this.style.webkitTransform = 'rotate(' + totalAngle + 'deg)';
});

2、雙指縮放事件-Scale

var target = document.getElementById("target");
target.style.webkitTransition = 'all ease 0.05s';
touch.on('#target', 'touchstart', function(ev){
ev.preventDefault();
});
var initialScale = 1;
var currentScale;
touch.on('#target', 'pinchend', function(ev){
currentScale = ev.scale - 1;
currentScale = initialScale + currentScale;
currentScale = currentScale > 2 ? 2 : currentScale;
currentScale = currentScale < 1 ? 1 : currentScale;
this.style.webkitTransform = 'scale(' + currentScale + ')';
log("當(dāng)前縮放比例為:" + currentScale + ".");
});
touch.on('#target', 'pinchend', function(ev){
initialScale = currentScale;
});

3、識(shí)別單擊, 雙擊和長(zhǎng)按事件-Tap & Hold

touch.on('#target', 'hold tap doubletap', function(ev){
//console.log(ev.type);
});

4、向左, 向右滑動(dòng)-Swipe

touch.on('#target', 'touchstart', function(ev){
ev.preventDefault();
});
var target = document.getElementById("target");
target.style.webkitTransition = 'all ease 0.2s';
touch.on(target, 'swiperight', function(ev){
this.style.webkitTransform = "translate3d(" + rt + "px,0,0)";
log("向右滑動(dòng).");
});
touch.on(target, 'swipeleft', function(ev){
log("向左滑動(dòng).");
this.style.webkitTransform = "translate3d(-" + this.offsetLeft + "px,0,0)";
});

5、拖拽事件-Drag

touch.on('#target', 'touchstart', function(ev){
ev.preventDefault();
});
var target = document.getElementById("target");
var dx, dy;
touch.on('#target', 'drag', function(ev){
dx = dx || 0;
dy = dy || 0;
log("當(dāng)前x值為:" + dx + ", 當(dāng)前y值為:" + dy +".");
var offx = dx + ev.x + "px";
var offy = dy + ev.y + "px";
this.style.webkitTransform = "translate3d(" + offx + "," + offy + ",0)";
});
touch.on('#target', 'dragend', function(ev){
dx += ev.x;
dy += ev.y;
});

6、原生事件-Touch

touch.on('#target', 'touchstart touchmove touchend', function(ev){
console.log(ev.type);
});

touch.js官方網(wǎng)站:http://touch.code.baidu.com/

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論

建宁县| 安塞县| 郁南县| 潞西市| 临猗县| 方正县| 西乌珠穆沁旗| 芦溪县| 普陀区| 平遥县| 加查县| 潼关县| 龙州县| 介休市| 五华县| 光泽县| 伊宁市| 城口县| 红安县| 河间市| 咸阳市| 阿瓦提县| 九龙城区| 鹤峰县| 澎湖县| 荣昌县| 酒泉市| 德化县| 北流市| 柳河县| 新安县| 福贡县| 米林县| 赤水市| 正宁县| 昌江| 故城县| 永新县| 临湘市| 朝阳区| 嫩江县|