Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.6k views
in Technique[技术] by (71.8m points)

Bootstrap tooltip container="body" scroll issue

I used bootstrap tooltip inside of a dropdown menu. I got that dropdown inside hide tooltip issue.

So I solve that with container="body".

Now I have another issue. That issue is If scroll with hover in tooltip selector element then the tooltip content go to the top.

Refer to the below screenshot.

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
 
Best answer

I made a solution to this problem. That's if the mouse hovers the tooltip selector element then add a script for that element hover in & out trigger event to remove & add body scroll. Example below:

$(document).on({
    mouseenter: function () {
        $('body').css('overflow-y', 'hidden');
    },
    mouseleave: function () {
        $('body').css('overflow-y', 'scroll')
    }
}, 'YOUR_TOOLTIP_SELECTOR');

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...