写了段图片跟随鼠标的代码 可以支持Firefox/IE/Opera/Chrome的 但出现问题...
写了段图片跟随鼠标的代码 可以支持Firefox/IE/Opera/Chrome的 但出现问题...图片成功出现了 效果也不错 就是无法点击链接! 请教高手帮忙修改一下!
<img src='mouse.gif' ID="myImage" style="position:absolute;top:0px;left:-500px"></img>
<script type="text/javascript">
h = myImage.height/2, w = myImage.width/2;
function mousefollower(){
x=event.x
y=event.y
myImage.style.posLeft= x-h
myImage.style.posTop = y-w }
document.onmousemove=mousefollower
function mousefollower(e){
x = (!document.all)? e.pageX : event.x+document.body.scrollLeft;
y = (!document.all)? e.pageY : event.y+document.body.scrollTop;
document.getElementById('myImage').style.left = x + 'px';
document.getElementById('myImage').style.top = y + 'px';
}
</script>