animation.open.duration Number

Defines the duration of the open animation.

Example - setting the duration of the open animation

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

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