我正在尝试添加工具提示(通过 Bootstrap),这样当您将鼠标悬停在图像上时,它会在 500 毫秒延迟后显示工具提示。图像有常规状态和悬停状态:
CSS:
.image {
background-image: url('../img/test.png');
background-repeat: no-repeat;
opacity: 0.3;
filter: alpha(opacity=30);
}
.image:hover {
opacity: 1;
filter: alpha(opacity=100);
}
HTML:
<div class="image"></div>
JavaScript:
$('.image').tooltip({title: 'Text', delay: { show: 500, hide: 0 }, trigger: 'hover', html: true});
问题是,当我将鼠标悬停在图像上以检查工具提示时,图像会闪烁而不会显示工具提示,如下所示: