animation.open.effects String

The effect that will be used for opening the Popover.

Example - setting the open animation effect

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

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