我有一个函数正在尝试编写,它在悬停时显示工具提示并在 mouseleave 上淡出:
$('.tt').mouseover(function(e) {
var tip = $(this).find('.tooltip');
//Set the X and Y axis of the tooltip
$('.tooltip').css('top', 0 );
$('.tooltip').css('right', -200);
tip.fadeIn('500');
}).mouseout(function(e) {
var tip = $(this).find('.tooltip');
tip.fadeOut('500');
});
如果用户使用鼠标不稳定并多次悬停,则工具提示会闪烁,本质上。有什么办法可以防止这种情况发生吗?