animation Boolean|Object
A collection of {Animation}
objects which are used to change the default animations. If set to false
, all widget animations will be disabled. animation:true
is not a valid configuration.
Example - disabling animations
<span id="target" title="Tooltip content">
Some Content
</span>
<script>
$(document).ready(function() {
$("#target").kendoTooltip({
animation: false
});
});
</script>
animation.close Object
The animation that will be used when the Tooltip closes.
Example - setting the close animation
<span id="target" title="Tooltip content">
Some Content
</span>
<script>
$(document).ready(function() {
$("#target").kendoTooltip({
animation: {
close: {
effects: "fade:out"
}
}
});
});
</script>
animation.close.effects String
The effect that will be used for closing the Tooltip.
Example - setting the close animation effect
<span id="target" title="Tooltip content">
Some Content
</span>
<script>
$(document).ready(function() {
$("#target").kendoTooltip({
animation: {
close: {
effects: "fade:out"
}
}
});
});
</script>
animation.close.duration Number
Defines the duration of the close animation.
Example - setting the duration of the close animation
<span id="target" title="Tooltip content">
Some Content
</span>
<script>
$(document).ready(function() {
$("#target").kendoTooltip({
animation: {
close: {
duration: 1000
}
}
});
});
</script>
animation.open Object
The animation that will be used when the Tooltip opens.
Example - setting the open animation
<span id="target" title="Tooltip content">
Some Content
</span>
<script>
$(document).ready(function() {
$("#target").kendoTooltip({
animation: {
open: {
effects: "fade:in",
duration: 1000
}
}
});
});
</script>
animation.open.effects String
The effect that will be used for opening the Tooltip.
Example - setting the open animation effect
<span id="target" title="Tooltip content">
Some Content
</span>
<script>
$(document).ready(function() {
$("#target").kendoTooltip({
animation: {
open: {
effects: "fade:in"
}
}
});
});
</script>
animation.open.duration Number
Defines the duration of the open animation.
Example - setting the duration of the open animation
<span id="target" title="Tooltip content">
Some Content
</span>
<script>
$(document).ready(function() {
$("#target").kendoTooltip({
animation: {
open: {
duration: "1000"
}
}
});
});
</script>