我在这里使用代码:http: //cssglobe.com/easyest-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 !重要;有效,但是当我获得页面的右侧时,工具提示会从页面上消失。
有什么方法可以让它在到达右侧边缘时从右到左显示?