$(function(){
const big = document.querySelector('.big')
const small = document.querySelector('.small')
document.body.addEventListener('mousemove',(e)=>{
console.log('body',Object.keys(e))
e.stopPropagation()
// e.stopImmediatePropagation()
},{capture:true})
small.addEventListener('mousemove',()=>{
console.log('small')
})
})
<div class="big">
<div class="small">
</div>
</div>
.big {
width:100vw;
height:100vh;
}
.small {
width:100px;
height:100px;
margin-left:100px;
margin-top:200px;
background-color: red;
}