[jQuery] 상단에 메뉴 고정하기 > 팁앤테크

본문 바로가기
사이트 내 전체검색

팁앤테크

[jQuery] 상단에 메뉴 고정하기

페이지 정보

profile_image
작성자 제로
댓글 0건 조회 41,778회 작성일 15-05-15 16:10

본문

<!doctype html>
<html lang="ko">
  <head>
    <meta charset="utf-8">
    <title>Fixed Header</title>
    <style>
      body {
        margin: 0px;
        padding: 0px;
      }
      .header {
        text-align: center;
      }
      .jq_menu {
        text-align: center;
        background: #000000;
        padding: 10px 0px;
        width: 100%;
        z-index:99;
        position:relative;
      }
      .wrapper {
        min-height: 500px;
      }
      .jq_fixed {
        position: fixed;
        top: 0px;
      }
    </style>
    <script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
    <script>
      $( document ).ready( function() {
        var jbOffset = $( '.jq_menu' ).offset();
        $( window ).scroll( function() {
          if ( $( document ).scrollTop() > jbOffset.top ) {
            $( '.jq_menu' ).addClass( 'jq_fixed' );
          }
          else {
            $( '.jq_menu' ).removeClass( 'jq_fixed' );
          }
        });
      } );
    </script>
  </head>
  <body>
    <div class="header">
      <h1>Site Title</h1>
    </div>
    <div class="jq_menu">
      <p>
        First Menu
        Second Menu
        Third Menu
        Fourth Menu
      </p>
    </div>
    <div class="wrapper">
    </div>
  </body>
</html>

댓글목록

등록된 댓글이 없습니다.

Total 829건 7 페이지
  • RSS
팁앤테크 목록
번호 제목 글쓴이 조회 날짜
679 제로 43312 07-23
678 제로 40980 07-07
677 제로 41758 07-01
676 제로 46099 07-01
675 제로 39264 06-25
열람중 제로 41779 05-15
673 제로 48817 05-09
672 제로 36783 04-23
671 제로 42198 04-16
670 제로 53497 04-10
669 제로 55745 03-19
668 제로 50056 03-03
667 제로 52324 02-23
666 제로 40171 02-20
665 제로 45245 02-20
664 제로 37977 02-20
663 제로 39885 02-10
662 제로 51862 01-28
661 제로 34250 01-28
660 제로 40693 01-25
659 제로 40026 01-23
658 제로 59434 01-05
657 제로 35983 12-19
656 제로 40225 12-17
655 제로 55876 12-02

검색

회원로그인

회원가입

사이트 정보

株式会社YHPLUS / 대표 : ZERO
〒140-0011 東京都品川区東大井2-5-9-203
050-5470-4714
오픈카카오톡 (YHPLUS) :
https://open.kakao.com/o/slfDj15d

접속자집계

오늘
2,004
어제
47,624
최대
431,155
전체
7,325,421
Copyright (c) 株式会社YHPLUS. All rights reserved.