我正在使用qtip作为工具提示,我根据光标移动了工具提示。我应该调用函数来动态地从左到右,然后从右到左移动箭头指针。 Hoe会在鼠标移动时将尖端左侧位置从10%更改为95%。
jQuery('.fire-object a img').each(function() {
jQuery(this).qtip({
// within an each() loop, $(this) refers to the trigger
content: jQuery(this).attr('title'),
style: {
width: 110,
padding: 5,
background: '#FFFFFF',
color: 'black',
textAlign: 'center',
border: {
width: 7,
radius: 5,
color: '#FFFFFF'
},
tip: 'bottomLeft',
name: 'dark' // Inherit the rest of the attributes from the preset dark style
},
position: {
my: 'left top',
target: 'mouse',
viewport: $(window), // Keep it on-screen at all times if possible
adjust: {
x: 10, y: 10
}
},
hide: {
fixed: true // Helps to prevent the tooltip from hiding ocassionally when tracking!
}
});
});
example 有任何想法吗?提前谢谢。