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