qTip - 如何在鼠标悬停后保持其可见性?
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该在
hide
标记中使用fixed: true
(如此处所示)you should use
fixed: true
in yourhide
tag (as shown here)