animation.close.effects String

The effect that will be used for closing the Popover.

Example - setting the close animation effect

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

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