我在jsfiddle上创建了一个示例,显示了这里:http://jsfiddle.net/F9bAZ/
为什么顶部/底部提示会像那样呈现? 左/右提示是正确的。
我刚刚更新到qTip 2.1.1而且它破了。 2.0.0工作正常。
一些代码:
$.fn.qtip.defaults = $.extend(true, {}, $.fn.qtip.defaults, {
style:{
tip:{
corner: true,
width: 24, //This doesn't work for top/bottom tips
height: 12 //This doesn't work for top/bottom tips
}
},
show: {
effect: false,
delay: 1
},
hide: {
effect: false,
delay: 0
},
content: {
attr: 'data-tooltip' // Tell qTip2 to look inside this attr for it's content
}
});