Smart Touch is an easy to use Javascript- Touch- Libary.
Note: You could use it without jQuery.
cd <your_project_root_folder>
npm install smart-touch --save
Add to your HTML:
<!-- only for test cases! -->
<script src='https://rawgit.com/mulian/smart-touch/master/dist/boundle.js' language='javascript' type='text/javascript' />
// will add touch globaly to window.touch
// require('smart-touch'); //if you use browserify
var call = function(e) {
console.log(e);
}
touch.on().fingers.eq(2).from.right().call(call);
touch.on().fingers.eq(3).move.toTop().call(call);
touch.on().fingers.betweene(1,5).from.left().call(call);
touch.on().fingers.eq(4).pinch.in().call(call);