본문 바로가기

FrontEnd/CSS

#18. CSS - background-attachment: fixed

반응형

background-attachment

nike 공식 홈페이지에 있는 이미지들을 배경으로 놓고 fixed 옵션을 적용해 보았습니다.

<!-- HTML -->
<section class="section1"></section>
<section class="section2"></section>
<section class="section3"></section>
section {
  height: 500px;
}
.section1 {
  background-image: url("https://static-breeze.nike.co.kr/kr/ko_kr//cmsstatic/structured-content/65250/211102_wlp_p6_bg.jpg");
  background-size: auto 100%;
  background-position: right;
  background-attachment: fixed;
}
.section2 {
  background-image:
    url("https://static-breeze.nike.co.kr/kr/ko_kr//cmsstatic/structured-content/65250/211027_hp_p5_bg.jpg");
  background-size: auto 100%;
  background-position: right;
  background-attachment: fixed;
}
.section3 {
  background-image:
    url("https://static-breeze.nike.co.kr/kr/ko_kr//cmsstatic/structured-content/65250/211102_wlp_p7_bg.jpg");
  background-size: auto 100%;
  background-position: right;
  background-attachment: fixed;
}

뒤에 배경은 고정이 된 상태로 요소들만 움직이는 것을 확인할 수 있습니다.

반응형

'FrontEnd > CSS' 카테고리의 다른 글

#17. CSS - Keyframes  (0) 2021.11.08
#16. CSS - Flex items 속성 :: shrink  (0) 2021.11.08
#15. CSS - Flex items 속성 :: grow  (0) 2021.11.08
#14. CSS - Flex items 속성 :: order  (0) 2021.11.08
#13. CSS 정렬방법 flex :: align-items  (0) 2021.11.05