延迟 qTip 关闭

发布于 2024-12-04 02:33:06 字数 78 浏览 0 评论 0原文

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

How can I delay the qTip2 plugin from closing, so that a user can click on a link within the tooltip? I want to having links to social networks when you hover over my e-mail address on my website.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

慕巷 2024-12-11 02:33:06

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

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

hide.fixed:设置为 true 时,如果鼠标移动,工具提示将不会隐藏
结束,允许单击内容并与之交互。
注意:添加隐藏延迟通常是在启用此功能时完成的
在隐藏之前给用户时间将鼠标悬停在工具提示上。

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
   }
});

See the hide.fixed and hide.delay properties in the documentation:

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

hide.fixed: When set to true, the tooltip will not hide if moused
over, allowing the contents to be clicked and interacted with.
Note: Adding a hide delay is generally done when this is enabled to
give the user time to mouseover the tooltip before hiding.

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

hide.delay: Time in milliseconds by which to delay hiding of the
tooltip when the hide.event is triggered on the 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
   }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文