//鼠标点击开始 center[0].onmousedown = function () { docMove(); //数据释放 document.onmouseup = function () { document.onmousemove = null; document.onmouseup = null; }; }; function docMove() { document.onmousemove = function (e) { var e = e || window.event; var newX = e.clientX; //通过newX动态设置元素css来达到改变位置的效果 //阻止冒泡 e.stopPropagation(); }; }
问题:如何通过setTimeout达到函数节流,提升性能?
PS:目前事件执行还有一个小问题,就是在移动元素的过程中会间接性出现鼠标已经释放但onmousemove 并未失效的问题,(实际观感就是鼠标左键已经释放,但是元素还会跟着鼠标移动)
繁花不似锦