bounceVelocityThreshold Number(default: 1.6)

The intensity of the swipe after which the swipe will result in a bounce effect when the user scrolls to the next page. Higher values require more accelerative swipe to notice the bounce effect when a page is changed.

Example - increasing the bounce velocity threshold

<div id="scrollView">
  <div data-role="page"><div style="height: 200px;">Foo</div></div>
  <div data-role="page"><div style="height: 200px;">Bar</div></div>
</div>

<script>

$("#scrollView").kendoScrollView({
    bounceVelocityThreshold: 5
});

</script>
In this article