如何检查工具提示图像是否超出屏幕。我想如果图像不在屏幕上,那么工具提示图像应该是左侧或右侧,它不应该走出屏幕并制作滚动条。这是jquery代码。
this.imagePreview = function(){
/* CONFIG */
xOffset = 10;
yOffset = 30;
// these 2 variable determine popup's distance from the cursor
// you might want to adjust to get the right result
/* END CONFIG */
$("a.preview").hover(function(e){
this.t = this.title;
this.title = "";
var c = (this.t != "") ? "<br/>" + this.t : "";
$("body").append("<p id='preview'><img src='"+ this.href +"' alt='Image preview' />"+ c +"</p>");
$("#preview")
.css("top",(e.pageY - xOffset) + "px")
.css("left",(e.pageX + yOffset) + "px")
.fadeIn("fast");
},
function(){
this.title = this.t;
$("#preview").remove();
});
$("a.preview").mousemove(function(e){
$("#preview")
.css("top",(e.pageY - xOffset) + "px")
.css("left",(e.pageX + yOffset) + "px");
});
};
// starting the script on page load
$(document).ready(function(){
imagePreview();
});
这是演示代码。http://jsfiddle.net/uVXTf/1/。当工具提示离开屏幕时,请注意它的显示滚动。如果工具提示在 x 位置检测到页面结尾,我希望工具提示应将位置更改为右侧。