2012-02-06 65 views
0

我使用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"); }); 

回答

0

,你應該在你的hide標籤使用fixed: trueas shown here

相關問題