how to add animation on bootstrap Tooltip?

前端 未结 2 1341
误落风尘
误落风尘 2021-02-10 23:21

Is there any way to add slide down animation on bootstrap tooltip, when hover.

\"facebook\"

2条回答
  •  北荒
    北荒 (楼主)
    2021-02-11 00:22

    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

提交回复
热议问题