0

在我的页面上,我使用带有图像预览的链接。

当您继续使用鼠标链接时,它会显示预览图像。

这是演示:http ://cssglobe.com/lab/tooltip/03/

我想在图像预览加载时显示加载 gif。

像这样加载 gif:http: //i.imgur.com/54cQB45.gif

这是我的javascript代码;

this.screenshotPreview = 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.screenshot").hover(function(e){
                this.t = this.title;
                this.title = "";       
                var c = (this.t != "") ? "<br/>" + this.t : "";
                $("body").append("<p id='screenshot'><img src='"+ this.rel +"' alt='url preview' />"+ c +"</p>");                                                                
                $("#screenshot")
                        .css("top",(e.pageY - xOffset) + "px")
                        .css("left",(e.pageX + yOffset) + "px")
                        .fadeIn("fast");                                               
    },
        function(){
                this.title = this.t;   
                $("#screenshot").remove();
    });
        $("a.screenshot").mousemove(function(e){
                $("#screenshot")
                        .css("top",(e.pageY - xOffset) + "px")
                        .css("left",(e.pageX + yOffset) + "px");
        });                    
};


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

和html代码;

<a href="Link" class="screenshot" rel="image link">Link Name</a>

那我该怎么办?有任何想法吗 ?

4

1 回答 1

1

您可以使用以下代码片段的变体在加载事件后触发它:

var img = $("<img />").attr('src', 'http://somedomain.com/image.jpg')
    .load(function() {
        if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) {
            alert('broken image!');
        } else {
            $("#something").append(img);
        }
    });
于 2013-07-27T22:06:33.913 回答