CSS animation에서 놀아 버리다 - bubble -
오늘은 거품을 표현하고 싶습니다.
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. 분해해 본다
❶.
우선 배경을 만듭니다.
<!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>
body {
margin: 0;
padding: 0;
background: url("../img/sea.png");
background-size: cover;
height: 100vh;
width: 100%;
}
❷.
거품을 만들고 움직입니다
.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()
하는 것으로, 이 거품과 같은 움직임을 표현할 수 있습니다.
❸.
여러 거품 만들기
.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 등 )를 만지면 각 애니메이션의 설정을 추가 할 수 있습니다. 코드가 깔끔하네요.
❹.
거품 증가
.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;
}
이상입니다.
그럼 또 내일~!
Reference
이 문제에 관하여(CSS animation에서 놀아 버리다 - bubble -), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/duka/items/92c3fcd9359917297545텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)