duration
Sets the effect duration.
Parameters
duration Number
The number of milliseconds it will take for the effect to reach its final state. By default, effects are animated for 400 milliseconds.
Returns
Effect
the effect instance for further usage
Example
<div id="foo">
I will be animated
</div>
<script>
kendo.fx($("#foo")).fadeOut().duration(2000).play();
</script>
In this article