startValue
Sets the initial opacity value of the element. 1 means the element will be fully opaque. 0 means that the element will be fully transparent.
Fading an element out, starting from 50%
<div id="foo">
Foo
</div>
<script>
kendo.fx($("#foo")).fade("out").startValue(0.5).play();
</script>
Parameters
value Number
the initial opacity value.
Returns
Effect
The effect instance
In this article