在缩放的div中设置div鼠标坐标

时间:2013-08-20 12:12:02

标签: javascript jquery html5 css3

问题是: 我是一个像这样的转型div:

$('#container').css('-moz-transform-origin', '0 0'); 
$('#container').css('-webkit-transform-origin', '0 0');
$('#container').css('-o-transform-origin', '0 0');
$('#container').css('-ms-transform-origin', '0 0');
$('#container').css('-transform-origin', '0 0');

$('#container').css('-moz-transform', 'scale(.5)');
$('#container').css('-webkit-transform', 'scale(.5)');
$('#container').css('-o-transform', 'scale(.5)');
$('#container').css('-ms-transform', 'scale(.5)');

现在我将另一个div附加到这个缩放容器......

id('container').appendChild( follower );    

如果我知道要将此div设置为文档的鼠标位置... 跟随者的位置与文档鼠标位置极不相同

$( document ).mousemove( function( e ) {

var IE = document.all ? true : false;

if ( IE ) {
   vx = e.clientX;
   vy = e.clientY;      
} else {
   vx = e.pageX;
   vy = e.pageY;
} 

follower.style.left = xDropPos + 'px';
follower.style.top  = yDropPos + 'px';
}

如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

使用vxvy参数,例如

$( document ).mousemove( function( e ) {
    var IE = document.all ? true : false;
    if ( IE ) {
       vx = e.clientX;
       vy = e.clientY;      
    } else {
       vx = e.pageX;
       vy = e.pageY;
    } 
    follower.style.left = vx + 'px';// use vx
    follower.style.top  = vy + 'px';// use vy
});