-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* created animated background effect * loading animation effect * soap bubble animation
- Loading branch information
1 parent
d28b30c
commit 610c720
Showing
2 changed files
with
141 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Soap Bubble Animation</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<div class="bubble"> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
</div> | ||
<div class="bubble"> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
</div> | ||
<div class="bubble"> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
</div> | ||
<div class="bubble"> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
*{ | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
body{ | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
min-height: 100vh; | ||
background-color: #000; | ||
} | ||
.bubble{ | ||
position: absolute; | ||
height: 200px; | ||
width: 200px; | ||
border-radius: 50%; | ||
box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.25); | ||
animation: animate 8s ease-in-out infinite; | ||
} | ||
.bubble:nth-child(2){ | ||
position: relative; | ||
zoom: 0.45; | ||
left: -10px; | ||
top: -100px; | ||
animation-delay: -4s; | ||
} | ||
.bubble:nth-child(3){ | ||
position: relative; | ||
zoom: 0.25; | ||
right: -80px; | ||
top: -300px; | ||
animation-delay: -6s; | ||
} | ||
.bubble:nth-child(4){ | ||
position: relative; | ||
zoom: 0.35; | ||
right: -120px; | ||
top: -200px; | ||
animation-delay: -3s; | ||
} | ||
@keyframes animate { | ||
0%,100%{ | ||
transform: translateY(-20px); | ||
} | ||
50%{ | ||
transform: translateY(20px); | ||
} | ||
} | ||
.bubble::before{ | ||
content: ''; | ||
position: absolute; | ||
top: 80px; | ||
left: 80px; | ||
width: 20px; | ||
height: 20px; | ||
border-radius: 50%; | ||
background:#ffff; | ||
z-index: 10; | ||
filter: blur(2px); | ||
} | ||
.bubble::after{ | ||
content: ''; | ||
position: absolute; | ||
top: 50px; | ||
left: 45px; | ||
width: 30px; | ||
height: 30px; | ||
border-radius: 50%; | ||
background:#ffff; | ||
z-index: 10; | ||
filter: blur(2px); | ||
} | ||
.bubble span{ | ||
position: absolute; | ||
border-radius: 50%; | ||
} | ||
.bubble span:nth-child(1){ | ||
inset: 10px; | ||
border-left: 15px solid #0fb4ff; | ||
filter: blur(8px); | ||
} | ||
.bubble span:nth-child(2){ | ||
inset: 10px; | ||
border-right: 15px solid #ff4484; | ||
filter: blur(8px); | ||
} | ||
|
||
.bubble span:nth-child(3){ | ||
inset: 20px; | ||
border-top: 15px solid #ffeb3b; | ||
filter: blur(8px); | ||
} | ||
|
||
.bubble span:nth-child(4){ | ||
inset: 30px; | ||
border-left: 15px solid #ff4484; | ||
filter: blur(12px); | ||
} | ||
.bubble span:nth-child(5){ | ||
inset:10px; | ||
border-bottom: 10px solid #fff; | ||
filter: blur(8px); | ||
transform: rotate(330deg); | ||
} |