Slider plugin background-attachment:fixed 동작 안할때
Date.
220419

 

디자인 시안에 기능들이 많았고, 플러그인 없이 새로 짜기엔 시간이 부족해서

찾아봤다가 참조 사이트를 참고해서 아래 코드 적용해서 해결했다.

 

 

    function parallax(selector){
      var scrolled = $(window).scrollTop();
      $(selector).css('background-position',"0 "+  (scrolled * 1) + 'px');
    }

    $(window).scroll(function(e){
      parallax('.slider .item');
    });

 

 

참조 : 

https://stackoverflow.com/questions/32409508/background-attachmentfixed-not-working-with-slick-slider-in-chrome