lol
Some checks failed
/ ls (pull_request) Failing after 25s
/ ls (release) Successful in 1m0s
/ ls (push) Successful in 1m36s

This commit is contained in:
lubiana 2025-07-14 21:54:27 +02:00
parent 83fb29a6fa
commit 0b4fe7f44a
Signed by: lubiana
SSH key fingerprint: SHA256:vW1EA0fRR3Fw+dD/sM0K+x3Il2gSry6YRYHqOeQwrfk

View file

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