lol #110

Merged
lubiana merged 1 commit from add-card into main 2025-07-14 19:54:45 +00:00

View file

@ -1,10 +1,13 @@
// Sparkle effect on mouse move // Sparkle effect on mouse move
document.addEventListener('mousemove', function (e) { document.addEventListener('mousemove', function (e) {
let emojis = ['✨', '💖', '🌟', '💅', '🦄', '🎉', '🌈'];
const htmlElement = document.documentElement; const htmlElement = document.documentElement;
if (htmlElement.getAttribute('data-website-mode') === 'normal') {
return;
}
let emojis = ['✨', '💖', '🌟', '💅', '🦄', '🎉', '🌈'];
if (htmlElement.getAttribute('data-website-mode') === 'mono') { if (htmlElement.getAttribute('data-website-mode') === 'mono') {
emojis = ['🦇', '🦹', '🌙', '⚰️', '🕯️']; emojis = ['🦇', '🦉', '🦔', '🦡', '🐺', '', '', '', '', '', '', '', '', '', ''];
} }
const sparkle = document.createElement('div'); const sparkle = document.createElement('div');
sparkle.className = 'emoji-footprint'; sparkle.className = 'emoji-footprint';