direction
Sets the effect direction.
Note certain effects (like Transfer, for instance) do not have a direction.
Parameters
direction string
The effect direction. Check the respective effect API reference for the values supported.
Returns
Effect
the effect instance for further usage
Example
<div id="foo">
I will be faded in
</div>
<script>
kendo.fx($("#foo")).fadeOut().direction("in").play();
</script>
In this article