You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
295 B

  1. import './public-path';
  2. import ready from '../mastodon/ready';
  3. ready(() => {
  4. const image = document.querySelector('img');
  5. image.addEventListener('mouseenter', () => {
  6. image.src = '/oops.gif';
  7. });
  8. image.addEventListener('mouseleave', () => {
  9. image.src = '/oops.png';
  10. });
  11. });