0

问题是:我有一个这样的转换 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';
}

如何解决这个问题?

4

1 回答 1

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
});
于 2013-08-20T12:16:20.043 回答