如何在缩略图上显示图像预览

时间:2013-04-29 22:16:01

标签: jquery image

如果您转到此页面上的inspect元素并设置float:right,我正在使用http://cssglobe.com/lab/tooltip/02/来显示图像预览。并将鼠标悬停在最近的窗口图像上,预览图像将隐藏在屏幕后面。如果悬停的图像位于最右侧,我想要显示在左侧,反之亦然。任何帮助表示赞赏。

以下是处理mouseover和mousemove

的js
    /*
 * Image preview 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.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();
});

1 个答案:

答案 0 :(得分:5)

我写了一些不同的东西然后准确地读了你的问题:(我希望它仍然可以帮助你。所有你必须改变的是摆脱Math.min并有一个简单的IF,当它真的改变了抵消了一点。

trc_x = Math.min(trc_x + event.pageX, Mx);
trc_y = Math.min(trc_y + event.pageY, My);

http://jsfiddle.net/V5JCq/9/