velocityThreshold Number(default: 0.8)

The velocity threshold after which a swipe will navigate to the next page (as opposed to snapping back to the current page).

    <div data-role="view">
      <div id="scrollView" data-role="scrollview" data-velocity-threshold="2">
        <div data-role="page">Foo</div>
        <div data-role="page">Bar</div>
        <div data-role="page">Baz</div>
        <div data-role="page">Bat</div>
      </div>
    </div>


    <script>
    var app = new kendo.mobile.Application();
    </script>
In this article