单击另一个qTip时,使qTip不会消失

时间:2015-07-06 09:58:22

标签: jquery qtip2

我使用了qtip2 jquery插件。如何点击另一个qTip时qTip不会消失。

1 个答案:

答案 0 :(得分:0)

您必须使用hide: fixed属性。这允许您单击工具提示而不会消失。 - http://qtip2.com/options#hide.fixed

通常它也与hide: delay属性一起使用,以便当用户将鼠标从触发器移动到工具提示时,他有时间移动到工具提示,而不会先将其隐藏。

$("#red-box").qtip({
    content: "this will stay for 1 second after you leave the box or tooltip",
    hide: {
        delay: 1000,
        fixed: true
    }
});

小提琴: http://jsfiddle.net/25eydrn3/1/