File tree Expand file tree Collapse file tree 3 files changed +54
-0
lines changed
Art/ChaniHighTech-LiquidLoader Expand file tree Collapse file tree 3 files changed +54
-0
lines changed Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html lang ="he ">
3
+ < head >
4
+ < meta charset ="UTF-8 ">
5
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6
+ < link rel ="stylesheet " href ="styles.css ">
7
+ </ head >
8
+ < body >
9
+ < div class ="loader ">
10
+ < div class ="dot "> </ div >
11
+ < div class ="dot "> </ div >
12
+ < div class ="dot "> </ div >
13
+ </ div >
14
+ </ body >
15
+ </ html >
Original file line number Diff line number Diff line change
1
+ {
2
+ "githubHandle" : " ChaniHighTech" ,
3
+ "artName" : " Liquid Loader"
4
+ }
Original file line number Diff line number Diff line change
1
+ body {
2
+ display : flex;
3
+ justify-content : center;
4
+ align-items : center;
5
+ height : 100vh ;
6
+ background : # 222 ;
7
+ }
8
+
9
+ .loader {
10
+ display : flex;
11
+ gap : 10px ;
12
+ }
13
+
14
+ .dot {
15
+ width : 20px ;
16
+ height : 20px ;
17
+ background : # ff4500 ;
18
+ border-radius : 50% ;
19
+ animation : liquid 1.5s infinite ease-in-out;
20
+ }
21
+
22
+ .dot : nth-child (2 ) {
23
+ background : # ffa500 ;
24
+ animation-delay : 0.2s ;
25
+ }
26
+
27
+ .dot : nth-child (3 ) {
28
+ background : # 32cd32 ;
29
+ animation-delay : 0.4s ;
30
+ }
31
+
32
+ @keyframes liquid {
33
+ 0% , 100% { transform : translateY (0 ); }
34
+ 50% { transform : translateY (-15px ) scale (1.2 ); }
35
+ }
You can’t perform that action at this time.
0 commit comments