LHJ

I'm a FE developer.

7. 최종 브라우저 테스트 - 인터넷 익스플로러 대응

25 Oct 2020 » js_interactive_web2

7. 최종 브라우저 테스트 - 인터넷 익스플로러 대응

이 예제도 마찬가지로 모더나이즈js를 통해 IE에서 고정된 컨텐츠가 오작동을 하지 않도록 처리하였다.

.no-csspositionsticky .fix_motion .fix_wrap .device_fix {position: relative; top:600px;}
function imageChange(moveX){ //시계안 이미지 변경을 처리하는 함수
    if(Modernizr.csspositionsticky){
        var img = $('.fix_motion .slide_wrap .sldie');
        img.css({
            'transform':'translateX('+ -moveX +'px)'
        });
    }
}