效果预览
html代码
<img src="img/2.gif" alt="">
css代码
<style>
img{
position: absolute;
width: 50px;
height: 50px;
}
</style>
js代码
<script>
var img = document.querySelector('img')
document.addEventListener('mousemove',function (e) {
//鼠标移动事件,记录移动时的坐标,赋值给img的top(Y) 和 left(X)
img.style.left= e.pageX-25+'px'
img.style.top= e.pageY-25+'px'
})
</script>