为了账号安全,请及时绑定邮箱和手机立即绑定

块跟着鼠标可以移动了,但是鼠标不动时,块不会在一起。怎么让块最后合在一起?

块跟着鼠标可以移动了,但是鼠标不动时,块不会在一起。怎么让块最后合在一起?

where_i_go 2018-07-26 19:13:22
<!DOCTYPE html><html><head><style>div {width:10px; height:10px; background:red; position:absolute;}</style><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title><script>window.onload=function (){    var aDiv=document.getElementsByTagName('div');    var i=0;        document.onmousemove=function (ev)    {        var oEvent=ev||event;                for(i=0;i<aDiv.length-1;i++)        {            aDiv[i].style.left=aDiv[i+1].style.left;            aDiv[i].style.top=aDiv[i+1].style.top;        }                aDiv[aDiv.length-1].style.left=oEvent.clientX+'px';        aDiv[aDiv.length-1].style.top=oEvent.clientY+'px';    };};</script></script></head><body><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></body></html>
查看完整描述
  • 1 回答
  • 0 关注
  • 995 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信