Is there any way to add slide down animation on bootstrap tooltip, when hover.
The tooptip is not generated until you hover the element. You need to add the respective class from animate.css after tooltip is shown.
$(function () {
$('[data-toggle="tooltip"]').tooltip();
$('[data-toggle="tooltip"]').on('shown.bs.tooltip', function () {
$('.tooltip').addClass('animated swing');
})
})
Fiddle demo