Is there a way to add a slide animation down when a tooltip on boot.
<img src="assets/images/icons/facebook.png" alt="facebook" data-toggle="tooltip" data-placement="top" title="Find us on facebook">
$(function () {
$('[data-toggle="tooltip"]').tooltip({
animation: 'fade'
});
})
By default, it disappears, but when I use some animation on it, the dose does not work.
I tried using animate.css , but the same problem occurred.
$(function () {
$('[data-toggle="tooltip"]').tooltip({
animation: 'animated slideInDown'
});
})
source
share