String / Numbersetting.view.expandSpeed

Overview[ depends on jquery.ztree.core js ]

The animation speed of expand or collapse node. As same as 'speed' parameter in jQuery

In order to ensure zTree operating speed, if use the IE6, zTree will not use animation.

Default: "fast"

String Format

e.g. "slow", "normal", or "fast"

If set to "", zTree will not use animation.

Number Format

How long the animation will run. [Unit: ms] (e.g. 1000)

Examples of setting

1. Set the animation speed to slow

var setting = {
	view: {
		expandSpeed: "slow"
	}
};
......