CSS animation에서 놀아 버리다 - bubble -

14727 단어 CSSanimation
CSS animation day9입니다.

오늘은 거품을 표현하고 싶습니다.

1. 완성판





See the Pen bubble-s! by hiroya iizuka ( @ 히로야 요시즈카 )
on CodePen .


2. 참고문헌



htps //w w. 요츠베. 이 m/와 tch? v=이 fzyhj9응 HKQ&t=1s

htps //w w. 요츠베. 이 m/와 tch? v=Qt cHDVfw

배경 이미지



3. 분해해 본다



❶.

우선 배경을 만듭니다.




index.html

<!DOCTYPE html>
<html lang="ja">
  <head>
    <meta charset="UTF-8" />
    <link rel="stylesheet" href="css/styles.css" />
  </head>
  <body>
    <div class="bubbles">
      <div class="bubble"></div>
      <div class="bubble"></div>
      <div class="bubble"></div>
      <div class="bubble"></div>
      <div class="bubble"></div>
      <div class="bubble"></div>
      <div class="bubble"></div>
    </div>
  </body>
</html>




styles.css

body {
  margin: 0;
  padding: 0;
  background: url("../img/sea.png");
  background-size: cover;
  height: 100vh;
  width: 100%;
}








❷.

거품을 만들고 움직입니다




styles.css


.bubble {
  position: absolute;
  bottom: 0;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  animation: bubble 10s ease-in infinite;
}

@keyframes bubble {
  0% {
    bottom: -100px;
    transform: translateX(0);
  }
  50% {
    transform: translateX(100px);
  }
  100% {
    bottom: 1000px;
  }
}





포인트 1개

・transform: keyframe 50% を、translateX() 하는 것으로, 이 거품과 같은 움직임을 표현할 수 있습니다.






❸.

여러 거품 만들기




styles.css

.bubble {
  position: absolute;
  bottom: 0;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  animation: bubble 10s ease-in infinite;
}

.bubble:nth-child(1) {
  width: 20px;
  height: 20px;
  left: 10%;
  animation: bubble 5s ease-in infinite;
}





포인트 1개

· bubbles의 자식 요소를 설정할 때 nth:child

의사 클래스를 설정합니다.

이것을 설정하면 keyframe のanimation の記述は1つ 그냥 자식 요소의 매개 변수 (animation delay , animation duration 등 )를 만지면 각 애니메이션의 설정을 추가 할 수 있습니다. 코드가 깔끔하네요.




❹.

거품 증가




styles.css


.bubble:nth-child(1) {
  width: 20px;
  height: 20px;
  left: 10%;
  animation-duration: 5s;
}

.bubble:nth-child(2) {
  width: 30px;
  height: 30px;
  left: 20%;
  animation-delay: 1s;
}

.bubble:nth-child(3) {
  width: 30px;
  height: 30px;
  left: 30%;
  animation-duration: 3s;
}

.bubble:nth-child(4) {
  width: 50px;
  height: 50px;
  left: 45%;
  animation-duration: 6s;
  animation-delay: 2s;
}

.bubble:nth-child(5) {
  width: 10px;
  height: 10px;
  left: 60%;
  animation-duration: 3.5s;
}

.bubble:nth-child(6) {
  width: 30px;
  height: 30px;
  left: 70%;
  animation-duration: 5s;
}

.bubble:nth-child(7) {
  width: 25px;
  height: 25px;
  left: 80%;
  animation-duration: 4s;
}





이상입니다.

그럼 또 내일~!


좋은 웹페이지 즐겨찾기