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

Animation.close

configuration

The animation played when a popup is closed.

<input id="datetimepicker" />
<script>
$("#datetimepicker").kendoDateTimePicker({
  animation: {
   close: {
     effects: "zoom:out",
     duration: 300
   }
  }
});
</script>

The duration of the close animation in milliseconds.

<input id="datetimepicker" />
<script>
$("#datetimepicker").kendoDateTimePicker({
    animation: {
        close: {
            effects: "fadeOut",
            duration: 500
        }
    }
});
</script>

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

Complete list of available animations

<input id="datetimepicker" />
<script>
$("#datetimepicker").kendoDateTimePicker({
    animation: {
        close: {
            effects: "fadeOut slideUp"
        }
    }
});
</script>