본문 바로가기

js

[js]스크롤하는만큼 내려오는 선-프로그래스바 같은

See the Pen 스크롤하는 만큼 내려오는 선 by sangmok-ye (@sangmok-ye) on CodePen.

  $(function(){

	  $(window).scroll(function(){
	    let em = $(".history_wrap em");
        let sc_st = $(window).scrollTop();
        let sc_dh = $(document).height();
        let sc_wh = $(window).height();
        let scroll_em = (sc_st / (sc_dh - sc_wh)) * 100;
          
		  em.css(
			  "height", scroll_em + "%"
		  );
	  })

  })

 


top