animate
defines the type of animation of view (cell) change or disables animation
boolean|object animate;
Example
webix.ui({
view:"multiview", // optional
cells:[/* cells configuration */],
animate:{
type:"flip",
subtype:"vertical"
}
});
Default value:
{type:"slide", subtype:"together"}
Related samples
Details
Disabling animation
To disable animation, set the parameter to false:
webix.ui({
view:"multiview",
animate:false,
cells:[/* ... */]
});
Object properties
As an object, the parameter takes 3 properties:
- direction - the animation direction (optional)
- type - the type of animation ('slide' by default):
- subtype - the subtype of animation ('together' by default):
- if type:slide
- if type:flip
See also
Back to top
Join Our Forum
We've retired comments here. Visit our forum for faster technical support,
connect with other developers, and share your feedback there.