animation Boolean(default: true)

Turns on or off the animation of the widget.

Example - turn off the animation

<div id="home" data-role="view">
    <div id="collapsible" data-role="collapsible" data-animation="false">
        <h2>Header</h2>
        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus sed purus sed orci aliquet dapibus.</p>
    </div>
</div>

<script>
var app = new kendo.mobile.Application();
</script>
In this article