修改Jquery以展开不同位置的每张照片

时间:2012-02-17 13:48:11

标签: javascript jquery html css

我一直在寻找一个在鼠标结束时展开照片的脚本。

这是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://cssglobe.com/lab/tooltip/02/

由于

问候

2 个答案:

答案 0 :(得分:1)

要让所有预览都出现在同一位置,请更改这些行中的坐标

.css("top",(e.pageY - xOffset) + "px")
.css("left",(e.pageX + yOffset) + "px")

写下您想要的坐标代替e.pageY - xOffsete.pageX + yOffset

答案 1 :(得分:0)

$("your id").click(function(event) {
  event.preventDefault();
});

点击主播不会将浏览器带到新网址。