duration Number(default: 400)

The milliseconds that take the ScrollView to snap to the current page after released.

Example - increase the duration of snap transition

<div data-role="view">
  <div id="scrollView" data-role="scrollview" data-duration="500">
    <div data-role="page">Foo</div>
    <div data-role="page">Bar</div>
  </div>
</div>

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