我怎样才能让我的 qtip 自己决定左或右提示属性
$('a.tooltip').each(function(){
$(this).qtip({
content: { url: 'includes/qtip.php?'+$(this).attr('rel')+' #'+$(this).attr('div'), text:'loading...' },
show: { delay: 400},
hide: { fixed: true, delay: 200 },
position: {
corner: {
target: 'bottomLeft',
tooltip: 'right'
}
},
style: {
name: 'light',
width: 700
}
});
});
我喜欢 .tooltip 项目位于我网站的右侧面板上,但如果没有,就看不到它的完整内容,
当它在其他地方时,如何使其成为 tooltip:'right'
?我的意思是,我怎么知道?
$('a.tooltip').each(function(){
$(this).qtip({
content: { url: 'includes/qtip.php?'+$(this).attr('rel')+' #'+$(this).attr('div'), text:'loading...' },
show: { delay: 400},
hide: { fixed: true, delay: 200 },
position: {
corner: {
target: 'bottomLeft',
tooltip: 'right'
}
},
style: {
name: 'light',
width: 700
}
});
});
Which I love wen the .tooltip item is on the right panel of my website, but if not can't see it complete,
How can I make it tooltip:'right'
when it's somewhere else? I mean, how can I know?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我与您的情况类似的解决方案是:
您可以在此线程中找到更多信息:
使用 qtip 时如何避免页面滚动?
The solution in my similar to yours case was:
You may find more info in this thread:
How to avoid page scroll when using qtip?
我想这可能是我第一次回答自己的问题,
这有效,
我可以优化它吗?
I think might be first time i answer my own question,
this works,
can i optimize it?