New to Kendo UI for jQueryStart a free 30-day trial

Animation.close

configuration

The animation played when the popup is closed.

<div id="popup">CONTENT</div>
<script>
$("#popup").kendoPopup({
  animation: {
   close: {
     effects: "zoom:out",
     duration: 300
   }
  }
}).data("kendoPopup").open();
</script>

The duration of the close animation in milliseconds.

<div id="popup">CONTENT</div>
<script>
$("#popup").kendoPopup({
  animation: {
   close: {
     duration: 500
   }
  }
}).data("kendoPopup").open();
</script>

The effect(s) to use when playing the close animation. Multiple effects should be separated with a space.

Complete list of available animations

<div id="popup">CONTENT</div>
<script>
$("#popup").kendoPopup({
  animation: {
   close: {
     effects: "fadeOut zoom:out"
   }
  }
}).data("kendoPopup").open();
</script>