expandDuration

The duration of the expand animation in miliseconds.

<ul id="treeview">
    <li>My Project
        <ul>
            <li id="someid">js</li>
            <li>css</li>
        </ul>
        <li>index.html<li>
        <li>upload.php<li>
    </li>
</ul>

<script type="text/javascript">
    jQuery(function ($) {
        $("#treeview").shieldTreeView({
            animation: {
                enabled: true,
                expandDuration: 200,
                collapseDuration: 150
            }
        });
    });
</script>