\Kendo\UI\ExpansionPanelAnimationExpand
A PHP class representing the expand setting of ExpansionPanelAnimation.
Methods
duration
The number of milliseconds used for the visual animation when an item is opened.
Returns
\Kendo\UI\ExpansionPanelAnimationExpand
Parameters
$value float
Example
<?php
$expand = new \Kendo\UI\ExpansionPanelAnimationExpand();
$expand->duration(1);
?>
effects
A whitespace-delimited string of animation effects that are used when an item is expanded. Available options are"expandVertical", "zoomIn" and "fadeIn".
Returns
\Kendo\UI\ExpansionPanelAnimationExpand
Parameters
$value string
Example
<?php
$expand = new \Kendo\UI\ExpansionPanelAnimationExpand();
$expand->effects('value');
?>