延迟qTip从结束

时间:2011-09-12 00:13:19

标签: javascript jquery qtip

如何延迟关闭qTip2插件,以便用户可以点击工具提示中的链接?当您将鼠标悬停在我网站上的电子邮件地址时,我想要链接到社交网络。

1 个答案:

答案 0 :(得分:4)

请参阅文档中的hide.fixed和hide.delay属性:

http://craigsworks.com/projects/qtip2/docs/hide/#fixed

  

hide.fixed:设置为true时,如果moused,工具提示将不会隐藏   结束,允许点击内容并与之互动。   注意:启用此选项时,通常会添加隐藏延迟   在隐藏之前,让用户有时间鼠标悬停工具提示。

http://craigsworks.com/projects/qtip2/docs/hide/#delay

  

hide.delay:延迟隐藏的时间(以毫秒为单位)   在hide.target

上触发hide.event时的工具提示
$('.selector').qtip({
   content: {
      text: $('<a href="http://google.com">Visit Google</a>'),
   },
   hide: {
      fixed: true, // Let the user mouse into the tip
      delay: 500 // Don't hide right away so that they can mouse into it
   }
});