C
Size: a a a
C
AP
I,
I,
C
BB
BB
AE
n
BB
T
DS
BB
BB
BB
n
BB
BB
VL
let wrAllOffset = document.querySelectorAll('.wrAll');
document.addEventListener('scroll', function(){
wrAllOffset.forEach((e, i)=>{
//pageYOffset //scrollY
if(e.offsetTop == window.pageYOffset){
console.log('xxxxxxxxxxxxxxxxx');
}
});
});