2020-10-13 02:19:35 +03:00
|
|
|
import 'packs/public-path';
|
2022-10-11 12:23:59 +03:00
|
|
|
import ready from 'flavours/glitch/ready';
|
2019-02-17 13:02:47 +02:00
|
|
|
|
|
|
|
ready(() => {
|
|
|
|
const image = document.querySelector('img');
|
|
|
|
|
|
|
|
image.addEventListener('mouseenter', () => {
|
|
|
|
image.src = '/oops.gif';
|
|
|
|
});
|
|
|
|
|
|
|
|
image.addEventListener('mouseleave', () => {
|
|
|
|
image.src = '/oops.png';
|
|
|
|
});
|
|
|
|
});
|