2013年9月25日 星期三

利用jQuery Touchwipe去觸發滑動的event

此效果要在平板&手機上才能看到

官網:
http://www.netcu.de/jquery-touchwipe-iphone-ipad-library

引用套件

Usage / Benutzung

$("#imagegallery").touchwipe({
     wipeLeft: function() { alert("left"); },
     wipeRight: function() { alert("right"); },
     wipeUp: function() { alert("up"); },
     wipeDown: function() { alert("down"); },
     min_move_x: 20,
     min_move_y: 20,
     preventDefaultEvents: true
});

Download


TIP:
測試時發現如果頁面有捲軸時,捲軸會無法滾動,這時把preventDefaultEvents: false
 即可解決此狀況