시각적 영역에서 dom 판단

3417 단어
let width = $(window).width();
let $dom = $('.box');

let judgePosition = (target) => {
            return (target.offset().left <= width) && (target.offset().left + target.width() >= 0);
        };
        let timer = setInterval(function () {
            if (judgePosition($dom)) {
                // console.log('aa');
                //  

            }else{
              //  
            }
        }, 60);

좋은 웹페이지 즐겨찾기