我正在开发具有以下选项的工具提示插件:
鼠标 = 真|假。相对于鼠标或元素的工具提示位置;
静态 = 真|假。Follow mouse when option Mouse = true.
我有一个 JSFiddle 示例:http: //jsfiddle.net/mdmoura/RPUX6/
问题:
当我将鼠标放在列表的最后一个工具提示上时,位置是错误的。
每次我滚动页面时都会发生这种情况......我不知道为什么。
设置位置的代码部分是:
$(this).each(function (e) {
// SOME CODE
$this.mouseenter(function (e) {
var $tooltip =
$("<div>")
.attr("class", options.class)
.html(options.content !== '' ? (typeof options.content === 'string' ? options.content : options.content($this, $tooltip)) : tooltip.title)
.appendTo('body');
$this.attr('title', '');
var position = [0, 0];
if (options.mouse) {
position = [e.clientX + options.offset[0], e.clientY + options.offset[1]];
} else {
var coordinates = $this[0].getBoundingClientRect();
position = [
(function () {
if (options.offset[0] < 0)
return coordinates.left - Math.abs(options.offset[0]) - $tooltip.outerWidth();
else if (options.offset[0] === 0)
return coordinates.left - (($tooltip.outerWidth() - $this.outerWidth()) / 2);
else
return coordinates.left + $this.outerWidth() + options.offset[0];
})(),
(function () {
if (options.offset[1] < 0)
return coordinates.top - Math.abs(options.offset[1]) - $tooltip.outerHeight();
else if (options.offset[1] === 0)
return coordinates.top - (($tooltip.outerHeight() - $this.outerHeight()) / 2);
else
return coordinates.top + $this.outerHeight() + options.offset[1];
})()
];
}
$tooltip.css({ left: position[0] + 'px', top: position[1] + 'px' });
您还可以在http://jsfiddle.net/mdmoura/RPUX6/中查看代码和演示。
谢谢你!