美文网首页
鼠标跟随移动

鼠标跟随移动

作者: 乍暖还寒2002 | 来源:发表于2017-10-10 23:01 被阅读0次

document.onmousemove = function(ev){

var div = document.getElementById('div');

var scrollTop = document.documentElement.scrollTop||document.body.scrollTop;//滚动条距离网页顶部距离

oEven = ev||even;

div.style.left = oEven.clientX + 'px';//鼠标

div.style.top = oEven.clientY + scrollTop + 'px';//

}

相关文章

网友评论

      本文标题:鼠标跟随移动

      本文链接:https://www.haomeiwen.com/subject/xtfiyxtx.html