123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <!DOCTYPE HTML>
- <html>
- <head>
- <!--
- NOTE viewport is set so user can scale
- -->
- <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"/>
- <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.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( {
- pinchIn:function(event, direction, distance, duration, fingerCount, pinchZoom)
- {
- $(this).text("You pinched " +direction + " by " + distance +"px, zoom scale is "+pinchZoom);
- },
- pinchOut:function(event, direction, distance, duration, fingerCount, pinchZoom)
- {
- $(this).text("You pinched " +direction + " by " + distance +"px, zoom scale is "+pinchZoom);
- },
- pinchStatus:function(event, phase, direction, distance , duration , fingerCount, pinchZoom) {
- $(this).html("Pinch zoom scale "+pinchZoom+" <br/>Distance pinched "+distance+" <br/>Direction " + direction);
- },
- fingers:2,
- pinchThreshold:0
- });
- });
- </script>
-
- <span class='title'></span>
- <h4>events: <span class='events'><code>pinchIn</code>, <code>pinchOut</code></span></h4>
- <p>You can also trigger pinch events, <code>pinchIn</code> will trigger when a user has completed a pinch in event, and <code>pinchOut</code> will trigger when a user has pinched out.</p>
-
- <button class='btn btn-small btn-info example_btn'>Jump to Example</button>
- <pre class="prettyprint lang-js" data-src='code_1'></pre>
- <span class='navigation'></span>
-
- <div id="test" class="box">Pinch me</div>
-
- <span class='navigation'></span>
- </div>
- </body>
- </html>
|