延迟关闭qTip

Delay qTip From Closing

本文关键字:qTip 延迟      更新时间:2023-09-26

如何延迟qtip插件关闭,以便用户可以点击工具提示中的链接?我想有链接到社交网络,当你悬停在我的电子邮件地址在我的网站。

查看隐藏。修正了文档中的hide.delay属性:

http://craigsworks.com/projects/qtip2/docs/hide/固定

隐藏。修正:当设置为true时,如果鼠标移动,工具提示将不会隐藏结束,允许内容被点击和交互。注意:添加隐藏延迟通常在启用时完成在隐藏工具提示之前,给用户时间将鼠标移到工具提示上。

http://craigsworks.com/projects/qtip2/docs/hide/延迟

hide.delay:以毫秒为单位延迟隐藏的时间工具提示时隐藏。事件在hide.target

上触发。
$('.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
   }
});