animation.closeObject

The animation that will be used when the Popover closes.

Example - setting the close animation

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

<script>
    $(document).ready(function() {
      $("#target").kendoPopover({
        template: "Content description",
        animation: {
          close: {
            effects: "fade:out"
          }
        }
      });
    });
</script>