Jquery ToolTip - 工作但需要调整

时间:2013-03-04 12:29:44

标签: jquery html css tooltip positioning

我在这里使用代码: http://cssglobe.com/easiest-tooltip-and-image-preview-using-jquery/

除了桌面问题外,这似乎还可以。

我的桌子很宽,有80多个栏目,需要我滚动查看全部内容。这很好,因为布局实际上可以很好地滚动。

每个标题都有一个分配给它的工具提示,它提供了下面列的详细信息。再次,这很好用一个例外。

当我靠近页面的右边缘时,工具提示开始换行,屏幕上需要滚动的任何标题/工具提示也会被包裹。

无论如何在工具提示上获得固定宽度,无论它在页面上与右边缘相关的位置如何?

这是jquery:

/*
 * Tooltip script 
 * powered by jQuery (http://www.jquery.com)
 * 
 * written by Alen Grakalic (http://cssglobe.com)
 * 
 * for more info visit http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery
 *
 */



this.tooltip = function(){  
    /* CONFIG */        
        xOffset = 10;
        yOffset = 20;       
        // these 2 variable determine popup's distance from the cursor
        // you might want to adjust to get the right result     
    /* END CONFIG */        
    $("a.tooltip").hover(function(e){                                             
        this.t = this.title;
        this.title = "";                                      
        $("body").append("<p id='tooltip'>"+ this.t +"</p>");
        $("#tooltip")
            .css("top",(e.pageY - xOffset) + "px")
            .css("left",(e.pageX + yOffset) + "px")
            .fadeIn("fast");        
    },
    function(){
        this.title = this.t;        
        $("#tooltip").remove();
    }); 
    $("a.tooltip").mousemove(function(e){
        $("#tooltip")
            .css("top",(e.pageY - xOffset) + "px")
            .css("left",(e.pageX + yOffset) + "px");
    });         
};



// starting the script on page load
$(document).ready(function(){
    tooltip();
});

使用:

调用它
<a href="http://cssglobe.com" class="tooltip" title="Web Standards Magazine">Roll over for tooltip</a>

使用样式:

#tooltip{
    position:absolute;
    border:1px solid #333;
    background:#f7f5d1;
    padding:2px 5px;
    color:#333;
    display:none;
    }

添加宽度:150!重要;工作,但当我得到页面右侧时,工具提示从页面上消失。

任何方法让它在到达右边缘时从右向左显示?

0 个答案:

没有答案