animation.open Object

The animation that will be used when the Popover opens.

Example - setting the open animation

<span id="target">
    Some Content
</span>

<script>
    $(document).ready(function() {
      $("#target").kendoPopover({
        template: "Content description",
        animation: {
          open: {
            effects: "fade:in",
            duration: 1000
          }
        }
      });
    });
</script>
In this article