city chic
June 2, 2025
✨/✨/✨/✨/✨/✨/✨/✨/
y2k bby glam
May 20, 2025
2 glam 2 give a damn
leopard print frenzy
May 5, 2025
Sometimes you gotta bring the wild side out—this leopard print combo was fierce and fabulous! 🐆💕
for (let i = 0; i < maxStars; i++) {
const star = document.createElement("div");
star.style.position = "fixed";
star.style.width = "8px";
star.style.height = "8px";
star.style.borderRadius = "50%";
star.style.backgroundColor = colors[i % colors.length];
star.style.pointerEvents = "none";
star.style.opacity = "0.7";
star.style.transition = "transform 0.5s, opacity 0.5s";
document.body.appendChild(star);
stars.push({ el: star, x: 0, y: 0 });
}
let index = 0;
document.addEventListener("mousemove", (e) => {
const star = stars[index];
star.x = e.clientX;
star.y = e.clientY;
star.el.style.transform = `translate(${star.x}px, ${star.y}px) scale(1)`;
star.el.style.opacity = "1";
setTimeout() => {
star.el.style.opacity = "0";
star.el.style.transform = `translate(${star.x}px, ${star.y}px) scale(0.5)`;
}, 300);
index = (index + 1) % stars.length;
});