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

Animation.close

configuration

The animation played when the popup is closed.

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

The duration of the close animation in milliseconds.

<input id="timepicker" />
<script>
$("#timepicker").kendoTimePicker({
    animation: {
        close: {
            effects: "fadeOut",
            duration: 1000
        }
    }
});
</script>

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

Complete list of available animations

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