Zepto에서 터치 모듈 사용(이동단)
1485 단어 Zepto
Zepto touch ( )
touch events test
// GitHub
$(document).ready(function(){
$('#touch_test').bind('touchmove', function(e) { e.preventDefault() })
listen_to('#touch_test')
function listen_to(el) {
$(el).tap(function(){
console.log(' | tap!') //tap
})
.doubleTap(function(){
console.log(' | double tap!') //
})
.swipe(function(){
console.log(' | swipe!') //
})
.swipeLeft(function(){
console.log(' | swipe left!') //
})
.swipeRight(function(){
console.log(' | swipe right!') //
})
.swipeUp(function(){
console.log(' | swipe up!') //
})
.swipeDown(function(){
console.log(' | swipe down!') //
})
.longTap(function(){
console.log(' | long tap!') //
})
.singleTap(function(){
console.log(' | single tap!') //
})
}
});