스크롤

스크롤

QA

스크롤

답변 3

본문

스크롤을 내리면 헤더에 메뉴가  계속 나타나게

할수있는 소스좀 가르쳐주세요

이 질문에 댓글 쓰기 :

답변 3

html

 

<div class="inner">

</div>

 

css

.inner {

     top: 0;

     z-index: 999;

     width: 100%;

     min-width: 1000px;

     margin: 0 auto;

     background-color: white;

     padding: 0 10 px;

     height: 45px;

     box-sizing: border-box;

}

  .fixinner{

      position: fixed;

}

 

 

jqeury

     $(window).scroll(function(){

      var height = $(document).scrolltop();

      if(height > 0){

          $('#header . inner').addclass('fixiner');

}else if(height == 0){

          $(#header .inner').removeclass('fixinner');

}

}));

 

답변을 작성하시기 전에 로그인 해주세요.
QA 내용 검색
질문등록
전체 103
© SIRSOFT
현재 페이지 제일 처음으로