position:absolute;
width:50px;
height:50px;
background-color:red;
border-radius:50%;
pointer-events:none;/使元素不干扰鼠标事件/
}
position:absolute; width:50px; height:50px; background-…
position:absolute;
width:50px;
height:50px;
background-color:red;
border-radius:50%;
pointer-events:none;/使元素不干扰鼠标事件/
}
constfollower=document.querySelector('.follower');
document.addEventListener('mousemove',(e)=>
follower.style.left=e.pageX+'px';
follower.style.top=e.pageY+'px';
});