사이드 슬라이딩 이미지(1)

jb kim·2021년 12월 15일
0

Web Projects

목록 보기
4/50
post-thumbnail

html

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="stylesheet" href="style.css" />
    <title>사이드 슬라이딩</title>
  </head>
  <body>
    <div class="container">
      <div class="panel active" style="background-image: url('')">
        <h3>사진 이름</h3>
      </div>
      <div class="panel" style="background-image: url('')">
        <h3>사진 이름</h3>
      </div>
      <div class="panel" style="background-image: url('')">
        <h3>사진 이름</h3>
      </div>
      <div class="panel" style="background-image: url('')">
        <h3>사진 이름</h3>
      </div>
      <div class="panel" style="background-image: url('')">
        <h3>사진 이름</h3>
      </div>

    </div>

    <script src="script.js"></script>
  </body>
</html>

사진찾기

https://pixabay.com/
https://unsplash.com/
https://picjumbo.com/

css

기본 템플릿 css에서 폰트만 수정해 보자

@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Muli', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}

CSS 하나하나 차근차근 적용해 보자

.container {
  display: flex;
  width: 90vw;
}

.panel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  flex: 0.5;
  margin: 10px;
  position: relative;
  transition: all 0.7s ease-in;
}

.panel h3 {
  font-size: 24px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin: 0;
  opacity: 0;
}

.panel.active {
  flex: 5;
}

.panel.active h3 {
  opacity: 1;
  transition: opacity 0.3s ease-in 0.4s;
}

@media (max-width: 480px) {
  .container {
    width: 100vw;
  }

  .panel:nth-of-type(4),
  .panel:nth-of-type(5) {
    display: none;
  }
}
profile
픽서

0개의 댓글