qTip - 如何在鼠标悬停后保持其可见性?

发布于 2025-01-02 23:37:20 字数 1189 浏览 0 评论 0原文

我使用 qTip 插件,如果我将光标移动到工具提示上,它就会隐藏。为什么 ?

 $('.b-short-desc-div')
                  .hover(function () {
                          if ($(this).data("qtip")) $(this).qtip("destroy");

                          $(this) 
                            .qtip({
                                content: qTipContent,
                                position: { adjust: { x: -160, y: -15 } },
                                show: {
                                    when: false,
                                    ready: true
                                },
                                hide: false,
                                style: {
                                    border: {
                                        width: 5,
                                        radius: 10
                                    },
                                    padding: 10,
                                    textAlign: 'center',
                                    tip: true,
                                    name: 'cream'
                                }
                            });
                  }, function () { $(this).qtip("destroy"); });

I use the qTip plugin, and if I move the cursor on the tooltip, it hides. Why ?

 $('.b-short-desc-div')
                  .hover(function () {
                          if ($(this).data("qtip")) $(this).qtip("destroy");

                          $(this) 
                            .qtip({
                                content: qTipContent,
                                position: { adjust: { x: -160, y: -15 } },
                                show: {
                                    when: false,
                                    ready: true
                                },
                                hide: false,
                                style: {
                                    border: {
                                        width: 5,
                                        radius: 10
                                    },
                                    padding: 10,
                                    textAlign: 'center',
                                    tip: true,
                                    name: 'cream'
                                }
                            });
                  }, function () { $(this).qtip("destroy"); });

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

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

发布评论

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

评论(1

疾风者 2025-01-09 23:37:20

您应该在 hide 标记中使用 fixed: true (如此处所示

you should use fixed: true in your hide tag (as shown here)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文