streams/library/swipe/demos/Any_finger_swipe.html
2019-11-17 17:07:32 -08:00

49 lines
2.2 KiB
HTML
Executable file

<!DOCTYPE HTML>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta http-equiv="x-ua-compatible" content="IE=9">
<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap-combined.min.css" rel="stylesheet">
<link href="http://twitter.github.com/bootstrap/assets/js/google-code-prettify/prettify.css" rel="stylesheet" />
<link href="css/main.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript" src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>
<script type="text/javascript" src="../jquery.touchSwipe.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<title>touchSwipe</title>
</head>
<body>
<a href="https://github.com/mattbryson"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_white_ffffff.png" alt="Fork me on GitHub"></a>
<div class="container">
<script id='code_1'>
$(function() {
$("#test").swipe( {
swipe:function(event, direction, distance, duration, fingerCount, fingerData) {
$("#test").text("You swiped " + direction + " with " + fingerCount + " fingers");
},
threshold:0,
fingers:'all'
});
});
</script>
<span class='title'></span>
<h4>Events: <span class='events'><code>swipe</code></span></h4>
<h4>properties: <span class='properties'><code>fingers</code></span></h4>
<p>By setting the number of <code>fingers</code> to 'all', any number of fingers will trigger the swipe.</p>
<button class='btn btn-small btn-info example_btn'>Jump to Example</button>
<pre class="prettyprint" data-src='code_1'></pre>
<span class='navigation'></span>
<div id="test" class="box">Swipe me with different combinations of fingers</div>
<span class='navigation'></span>
</div>
</body>
</html>