Skip to content

Commit 2cb0c47

Browse files
Update summer-slams-dsa.html
1 parent 192557f commit 2cb0c47

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

summer-slams-dsa.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
align-items: center;
2727
overflow: hidden;
2828
text-align: center;
29+
transition: background 0.5s ease;
2930
}
3031

3132
/* Logo */
@@ -86,9 +87,10 @@
8687

8788
.particle {
8889
position: absolute;
89-
background: rgba(255, 255, 255, 0.05);
90+
background: rgba(255, 255, 255, 0.1);
9091
border-radius: 50%;
9192
animation: float 10s infinite ease-in-out;
93+
transition: transform 0.5s ease;
9294
}
9395

9496
@keyframes float {
@@ -112,7 +114,7 @@ <h1>Coming Soon</h1>
112114
<script>
113115
const particleContainer = document.getElementById("particles-container");
114116

115-
for (let i = 0; i < 30; i++) {
117+
for (let i = 0; i < 50; i++) { // Increased particle count for a denser effect
116118
const p = document.createElement("div");
117119
p.classList.add("particle");
118120
const size = Math.random() * 12 + 5;

0 commit comments

Comments
 (0)