当图像过度时,cluetip工具提示会闪烁

时间:2013-03-21 18:00:27

标签: jquery css

我在图像上放置了一个cluetip工具提示,并通过外部文件添加了指向cluetip的html链接。我试图让鼠标在图像上打开,然后在鼠标移出图像时关闭。当我选择三个按钮中的一个时,我将鼠标移动到cluetip / image上时,除了cluetip闪烁之外所有这些都有效...

这些必须是一种方法,如果有人可以帮助我,谢谢

我目前有:

$(document).ready(function() {
  $(\'a.tips\').cluetip({
    width: 80,
    topOffset: -45,
    leftOffset:-90,
    positionBy: \'fixed\',
    cluetipClass:     \'rounded\',
    showTitle:        false,
    sticky:           true, 
    mouseOutClose:    true
      });  
});

什么是好的是使用粘性'true'与鼠标关闭,但我不能让它工作。

1 个答案:

答案 0 :(得分:0)

通常添加.stop()可修复闪烁问题。我以前没有使用cuetip,但尝试类似:

$(\'a.tips\').stop().cluetip({ ... });