喂
我正在使用cluetip,它完美无缺。但我希望所有提示都能在网站上的确切位置打开。
我的线索提示看起来像这个atm
$('a.btn').cluetip(
{
cluetipClass: 'jtip',
local:true,
sticky: true,
dropShadow: false,
hoverIntent: true,
closePosition: 'title',
sticky: true,
leftOffset: 25,
closeText: '<img src="/images/cluetip/cross.png" alt="" />',
cursor: 'pointer',
activation: 'click',
}
);
答案 0 :(得分:1)
cluetip的全部原因(除了漂亮的样式)是相对于链接弹出工具提示,所以我不知道为什么你希望工具提示总是在你网站的同一地点打开。
但你可以使用cluetip class jtip
的基本CSS样式来实现这个目的:
.jtip {
position: absolute !important;
left: 20px;
right: 20px;
}
当然,如果你要重写cluetip插件以不使用相对定位(例如参见leftOffset),而是绝对定位,那将会更清晰。