lol
This commit is contained in:
parent
83fb29a6fa
commit
0b4fe7f44a
1 changed files with 5 additions and 2 deletions
|
@ -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';
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue