开发者

Center a DOM element on mouse cursor

开发者 https://www.devze.com 2023-02-05 13:42 出处:网络
I have some code that is resizing the size of a DOM element during a mouse scroll event.What needs to happen is that the element needs to track with the position of the mouse cursor.so the point locat

I have some code that is resizing the size of a DOM element during a mouse scroll event. What needs to happen is that the element needs to track with the position of the mouse cursor. so the point location of the element where the mouse cursor is positioned should stay the same after the resize has occurred.

the following code works to always center the element on the mouse cursor, which is close, but not exactly the behavior i am looking for

开发者_开发技巧
var positionLeft = e.clientX - img.offset().left - (img.realWidth()  / 2);
var positionTop = e.clientY - img.offset().top - (img.realHeight() / 2);
img.css('left', positionLeft);
img.css('top', positionTop);


I don't really see what is the point for this, but I created a jsFiddle that will center a DOM element on (under) the mouse cursor.

Link: http://jsfiddle.net/UEQCW/

0

精彩评论

暂无评论...
验证码 换一张
取 消