我在_image preview上存在问题,在你对thumbnail进行跟踪时就会出现问题。 我可以改变审查与曲线之间的距离,但如果th子靠近窗口的侧面,那么审查就能够合适,而且你只看到其中的一部分。
是否有办法使这种审查能够做到,如果预约适合,它将在治疗者的另一边展示?
页: 1
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("slow");
},
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();
});
EDIT: see what i am getting,
我在页右角的形象,这样一来,我预言的 im子就更加正确,除了预言的一半外。 如何将预约带给 cur子。