diff --git a/CREDITS.txt b/CREDITS.txt index 92dcc63..7704fec 100644 --- a/CREDITS.txt +++ b/CREDITS.txt @@ -1,2 +1,5 @@ Fart sounds: - https://pixabay.com/sound-effects/search/fart/ + +Peach emoji: +- https://en.wikipedia.org/wiki/Peach_emoji \ No newline at end of file diff --git a/index.js b/index.js index 3eb6d34..8140724 100644 --- a/index.js +++ b/index.js @@ -59,6 +59,8 @@ const eventsTable = [ onCount: 15, action: () => { clickMeText.innerText = `having fun?`; + clickMeWrapper.classList.add("customCursor"); + clickMe.classList.add("customCursor"); playFart(regularFart); } }, diff --git a/main.css b/main.css index 442e2df..6e09b4c 100644 --- a/main.css +++ b/main.css @@ -29,3 +29,6 @@ transform: translate(-50%, -50%); font-size: 48px; } +.customCursor { + cursor: url("peach-emoji.png"), auto; +} \ No newline at end of file diff --git a/peach-emoji.png b/peach-emoji.png new file mode 100644 index 0000000..116e111 Binary files /dev/null and b/peach-emoji.png differ