mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-25 22:31:36 +01:00
fe7db7905f
Port 36909065b5
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
18 lines
399 B
TypeScript
18 lines
399 B
TypeScript
import '@/entrypoints/public-path';
|
|
import ready from 'flavours/glitch/ready';
|
|
|
|
ready(() => {
|
|
const image = document.querySelector<HTMLImageElement>('img');
|
|
|
|
if (!image) return;
|
|
|
|
image.addEventListener('mouseenter', () => {
|
|
image.src = '/oops.gif';
|
|
});
|
|
|
|
image.addEventListener('mouseleave', () => {
|
|
image.src = '/oops.png';
|
|
});
|
|
}).catch((e: unknown) => {
|
|
console.error(e);
|
|
});
|