\Kendo\UI\PopoverAnimation
A PHP class representing the animation setting of Popover.
Methods
close
The animation that will be used when the Popover closes.
Returns
\Kendo\UI\PopoverAnimation
Parameters
$value \Kendo\UI\PopoverAnimationClose|array
Example - using \Kendo\UI\PopoverAnimationClose
<?php
$animation = new \Kendo\UI\PopoverAnimation();
$close = new \Kendo\UI\PopoverAnimationClose();
$duration = 1;
$close->duration($duration);
$animation->close($close);
?>
Example - using array
<?php
$animation = new \Kendo\UI\PopoverAnimation();
$duration = 1;
$animation->close(array('duration' => $duration));
?>
open
The animation that will be used when the Popover opens.
Returns
\Kendo\UI\PopoverAnimation
Parameters
$value \Kendo\UI\PopoverAnimationOpen|array
Example - using \Kendo\UI\PopoverAnimationOpen
<?php
$animation = new \Kendo\UI\PopoverAnimation();
$open = new \Kendo\UI\PopoverAnimationOpen();
$duration = 1;
$open->duration($duration);
$animation->open($open);
?>
Example - using array
<?php
$animation = new \Kendo\UI\PopoverAnimation();
$duration = 1;
$animation->open(array('duration' => $duration));
?>