endValue
Sets the initial scale value of the element. 1 means the element will be displayed its real size. 2 means the element will be scaled twice. 0.1 (or less) means that the element will be zoomed out.
Zooming an element in to 50% scale
<div id="foo">
Foo
</div>
<script>
kendo.fx($("#foo")).zoom("in").endValue(0.5).play();
</script>
Parameters
value Number
the final scale value.
Returns
Effect
The effect instance
In this article