// 判断元素是否在视口中
function isEleVisible(ele){
var {top, right, bottom, left} = ele.getBoundingClientRect()
var w = window.innerWidth
var h = window.innerHeight
if(bottom < 0 || top > h){
// y 轴方向
return false
}
if(right < 0 || left > w){
// x 轴方向
return false
}
return true
}