To get the offset values from jquery

前端 未结 3 1219
孤城傲影
孤城傲影 2021-02-04 19:23

How do i find the offset value of an image, which is enclosed with in a table. The table consist of lot of images. i want to get the offset - left, right, top, bottom for all th

3条回答
  •  情话喂你
    2021-02-04 19:41

    Please read the jQuery documentation. These functions are all very clearly spelled out.

    $("#yourImg").bind("mousemove", function(e) {
        var $this = $(this);
        var imgLeft = e.pageX - $this.offset().left;
        var imgTop = e.pageY - $this.offset().top;
        var imgBottom = $this.offset().top + $this.height() - e.pageY;
        var imgRight = $this.offset().left + $this.width() - e.pageX;
    
        // do more stuff here
    }
    

提交回复
热议问题