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

时间:2012-02-06 18:41:39

标签: 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"); });

1 个答案:

答案 0 :(得分:0)

您应该在fixed: true代码中使用hide as shown here