여러분이 사용하고 계신 브라우저는 HTML5를 지원하지 않기 때문에 몇몇 요소가 제대로 보이도록 JScript를 사용하고 있습니다. 하지만 여러분의 브라우저 설정에서 스크립트 기능이 꺼져있으므로, 현재 페이지를 제대로 확인하시려면 스크립트 기능을 켜주셔야 합니다. How To - 스크롤 시 헤더 크기 조정
How To – 스크롤 시 헤더 크기 조정
1개월전 작성
1개월전 수정

w3.css

스크롤 시 헤더 크기 조정

CSS와 JavaScript를 사용하여 스크롤 시 헤더를 줄이는 방법을 알아보자.

스크롤 시 헤더를 축소하는 방법

위에서 시작하는 선형 그라데이션 배경색을 만든다. 청록색/녹색에서 파란색으로 시작한다.

1단계) HTML 추가
<div id="header">Header</div>
2단계) CSS 추가

헤더 스타일 지정

#header {
  background-color: #f1f1f1; /* Grey background */
  padding: 50px 10px; /* Some padding */
  color: black;
  text-align: center; /* Centered text */
  font-size: 90px; /* Big font size */
  font-weight: bold;
  position: fixed; /* Fixed position - sit on top of the page */
  top: 0;
  width: 100%; /* Full width */
  transition: 0.4s; /* Add a transition effect (when scrolling - and font size is decreased) */
}
3단계) ​​JavaScript 추가
// When the user scrolls down 50px from the top of the document, resize the header's font size
window.onscroll = function() {scrollFunction()};

function scrollFunction() {
  if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 50) {
    document.getElementById("header").style.fontSize = "30px";
  } else {
    document.getElementById("header").style.fontSize = "90px";
  }
}

기본 예시
예제 보기

참고

Mingg`s Diary
밍구
밍구
공부 목적 블로그