1

我一直在研究一个简单的工具提示(参见下面的小提琴),但遇到了一些定位问题。我希望提示显示在被点击的链接的中心和上方。目前左上角位于鼠标单击处。我试图将这个位置偏移工具提示的一半,但没有成功。

http://jsfiddle.net/Ricco/CBf4C/

4

3 回答 3

2

查看http://jsfiddle.net/CBf4C/3/上的更改

您需要获取单击元素的位置(使用.position()),获取工具提示的尺寸,.outerWidth()然后.outerHeight()根据这些计算..

实际代码是

$('a[title]').click(function(e) {

    //fadetooltip and display information
    $('body').append('<div class="tooltip"><div class="tipBody"></div></div>');
    tip = $(this).attr('title');
    var tooltip = $('.tooltip'); // store a reference to the tooltip to use it later
    tooltip.fadeTo(300, 0.9).children('.tipBody').html( tip );


    // calculate position of tooltip
    var el = $(this),
        pos = el.position(), // get position of clicked element
        w = el.outerWidth(), // get width of clicked element, to find its center
        newtop = pos.top - tooltip.outerHeight() , // calculate top position of tooltip
        newleft = pos.left + (w/2) - (tooltip.outerWidth()/2); // calculate left position of tooltip

    //set position
    $('.tooltip').css('left', newleft )  ;
    $('.tooltip').css('top',  newtop );

    hideTip = false;
});
于 2012-09-19T08:52:45.330 回答
1

http://jsfiddle.net/CBf4C/15/ - 看到这个。

于 2012-09-19T09:35:47.900 回答
0

查看我在这里所做的更改:http: //jsfiddle.net/CBf4C/9/

于 2012-09-19T08:57:21.757 回答