Skip to content
21 changes: 21 additions & 0 deletions Art/UserAkku-Music-On/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Beats Hover Effect</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="beats-container">
<div class="beats">🎧</div>
<div class="wave wave1"></div>
<div class="wave wave2"></div>
<div class="wave wave3"></div>
<div class="wave wave4"></div>
<div class="wave wave5"></div>
<div class="wave wave6"></div>
<div class="text">MUSIC ON!</div>
</div>
</body>
</html>
4 changes: 4 additions & 0 deletions Art/UserAkku-Music-On/meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"githubHandle": "UserAkku",
"artName": "Music On"
}
131 changes: 131 additions & 0 deletions Art/UserAkku-Music-On/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
body {
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: #1a1a1a;
font-family: Arial, sans-serif;
overflow: hidden;
}

.beats-container {
position: relative;
animation: float 3s ease-in-out infinite;
}

.beats {
font-size: 100px;
animation: rotate 4s ease-in-out infinite;
filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

@keyframes float {
0%, 100% {
transform: translateY(0px);
}
50% {
transform: translateY(-20px);
}
}

@keyframes rotate {
0%, 100% {
transform: rotate(-5deg) scale(1);
}
50% {
transform: rotate(5deg) scale(1.1);
}
}

/* Waves */
.wave {
position: absolute;
width: 10px;
background: linear-gradient(to top, #4CAF50, #8BC34A);
border-radius: 10px;
animation: pulse 0.6s ease-in-out infinite;
}

.wave1 {
left: -40px;
top: 50%;
transform: translateY(-50%);
height: 40px;
animation-delay: 0s;
}

.wave2 {
left: -70px;
top: 50%;
transform: translateY(-50%);
height: 50px;
animation-delay: 0.1s;
}

.wave3 {
left: -100px;
top: 50%;
transform: translateY(-50%);
height: 35px;
animation-delay: 0.2s;
}

.wave4 {
right: -40px;
top: 50%;
transform: translateY(-50%);
height: 40px;
animation-delay: 0s;
}

.wave5 {
right: -70px;
top: 50%;
transform: translateY(-50%);
height: 50px;
animation-delay: 0.1s;
}

.wave6 {
right: -100px;
top: 50%;
transform: translateY(-50%);
height: 35px;
animation-delay: 0.2s;
}

@keyframes pulse {
0%, 100% {
transform: translateY(-50%) scaleY(1);
opacity: 0.8;
}
50% {
transform: translateY(-50%) scaleY(1.8);
opacity: 1;
}
}

.text {
position: absolute;
bottom: -60px;
left: 50%;
transform: translateX(-50%);
color: white;
font-size: 24px;
font-weight: bold;
white-space: nowrap;
animation: glow 2s ease-in-out infinite;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes glow {
0%, 100% {
opacity: 0.6;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
50% {
opacity: 1;
text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}
}