如何使用 jQuery qTIp 设置笔尖尺寸?
我在修改 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'
}
}
});
I'm having some trouble with modifying qTip's tip size (x,y).
I tried to add the style: { tip: { x:2,y:2 } }
in all sorts of ways, but failed.
How can I add it to the following script?
// 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'
}
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这很简单:
http://craigsworks.com/projects/qtip/docs/tutorials/ #提示
it's simpe enough:
http://craigsworks.com/projects/qtip/docs/tutorials/#tips
对于 qtip 2,您只需设置
tip
对象的width
和height
属性:请参阅 http://qtip2.com/plugins#tips.width
For qtip 2, you can just set the
width
andheight
properties of thetip
object:See http://qtip2.com/plugins#tips.width
知道了!
感谢 StackOverflow,您偶尔成为一个橡皮鸭 :)
Got it!
Thanks, StackOverflow, for being an occasional rubber duck :)