CSS 애니메이션 04

CSS3(keyframes, transform, translate, animation)을 이용한 tail Animation Effect.

css wave animation

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* CSS */
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(to right, #fa709a 0%, #fee140 100%);
}
.circle {
position: absolute;
animation: movex 1s ease-in-out alternate infinite;
}
.circle div{
background: #fff;
width:50px;
height: 50px;
border-radius: 50%;
animation: movey 1s linear infinite;
}
.circle:nth-of-type(2) > div{
width:40px;
height:40px;
opacity: 0.8;
}
.circle:nth-of-type(3) > div{
width:30px;
height:30px;
opacity: 0.6;
}
.circle:nth-of-type(4) > div {
width:20px;
height:20px;
opacity: 0.4;
}
.circle:nth-of-type(5) > div {
width:10px;
height:10px;
opacity: 0.2;
}
.circle:nth-of-type(2),
.circle:nth-of-type(2) > div {animation-delay:0.1s;}
.circle:nth-of-type(3),
.circle:nth-of-type(3) > div {animation-delay:0.2s;}
.circle:nth-of-type(4),
.circle:nth-of-type(4) > div {animation-delay:0.3s;}
.circle:nth-of-type(5),
.circle:nth-of-type(5) > div {animation-delay:0.4s;}

@keyframes movex {
0% {transform: translate(-100px, 0);}
100% {transform: translate(100px, 0);}
}

@keyframes movey {
0% {transform: translate(0, 0);}
25% {transform: translate(0, -100px);}
50% {transform: translate(0, 0);border-radius: 0%;}
75% {transform: translate(0, 100px);}
100% {transform: translate(0, 0);}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!-- html -->
<div class="circle">
<div></div>
</div>
<div class="circle">
<div></div>
</div>
<div class="circle">
<div></div>
</div>
<div class="circle">
<div></div>
</div>
<div class="circle">
<div></div>
</div>

REFERENCE

https://www.youtube.com/watch?v=EPVBNAYmAyA&t=247s

  • © 2020-2025 404 Not Found
  • Powered by Hexo Theme Ayer