2020-10-13 08:19:35 +09:00
|
|
|
import './public-path';
|
2019-02-16 07:33:25 +09:00
|
|
|
import ready from '../mastodon/ready';
|
|
|
|
|
|
|
|
ready(() => {
|
2024-04-29 17:02:41 +09:00
|
|
|
const image = document.querySelector<HTMLImageElement>('img');
|
|
|
|
|
|
|
|
if (!image) return;
|
2019-02-16 07:33:25 +09:00
|
|
|
|
|
|
|
image.addEventListener('mouseenter', () => {
|
|
|
|
image.src = '/oops.gif';
|
|
|
|
});
|
|
|
|
|
|
|
|
image.addEventListener('mouseleave', () => {
|
|
|
|
image.src = '/oops.png';
|
|
|
|
});
|
2024-04-29 17:02:41 +09:00
|
|
|
}).catch((e: unknown) => {
|
|
|
|
console.error(e);
|
2019-02-16 07:33:25 +09:00
|
|
|
});
|