popup.animationBoolean | Object
Configures the opening and closing animations of the popup. The same limitations apply as the originating widget's animation
configuration.
Example
<div id="inlineaiprompt"></div>
<script>
$("#inlineaiprompt").kendoInlineAIPrompt({
popup: {
animation: {
open: { effects: "fade:in", duration: 300 },
close: { effects: "fade:out", duration: 200 }
}
}
});
</script>
In this article