duration Number(default: 400)

The duration (in milliseconds) for the ScrollView to snap to the current page after the user releases it.

Example - increasing the duration of the snap transition

<div id="scrollView" style="height: 500px;">
  <div data-role="page">This page will stretch to fit the entire view height</div>
  <div data-role="page">This page will stretch to fit the entire view height</div>
  <div data-role="page">This page will stretch to fit the entire view height</div>
</div>

<script>
$("#scrollView").kendoScrollView({
    duration: "800",
        contentHeight: "100%"
});
</script>
In this article