我在修改qTip的笔尖大小(x,y)时遇到了一些麻烦。
我试图以各种方式添加style: { tip: { x:2,y:2 } }
,但失败了。
如何将其添加到以下脚本?
// Status Tooltips Style
$.fn.qtip.styles.statusTooltips = {
background: '#333333',
color: 'white',
textAlign: 'center',
border: {
width: 1,
radius: 5,
color: '#333333'
},
tip: 'leftMiddle',
name: 'dark'
}
// Status Tooltips Init
$('.status[title]').qtip({
style: 'statusTooltips',
position: {
corner: {
target: 'rightMiddle',
tooltip: 'leftBottom'
}
}
});
答案 0 :(得分:9)
它足够简单:
$("#mytip").qtip({style: { tip: { size: { x: 10, y: 10}} }});
答案 1 :(得分:4)
对于qtip 2,您只需设置width
对象的height
和tip
属性:
$("#mytip").qtip({
style: {
tip: {
width: 10,
height: 10
}
}
});
答案 2 :(得分:-6)
知道了!
$('.status[title]').qtip({ style: {background:'#333333', color:'white', textAlign:'center', border:{width: 1, radius: 5, color: '#333333'}, tip:{corner:'leftMiddle',size: { x:6,y:10 }} }, position: {corner: {target:'rightMiddle',tooltip:'leftBottom'}} });
谢谢,StackOverflow,偶尔会出现rubber duck:)