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

Animation.open

configuration

The animation played when the calendar popup is opened.

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

The duration of the open animation in milliseconds.

<input id="timepicker" />
<script>
$("#timepicker").kendoTimePicker({
    animation: {
        open: {
            effects: "slideDown",
            duration: 600
        }
    }
});
</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: {
        open: {
            effects: "fadeIn zoom:in",
            duration: 400
        }
    }
});
</script>