Change error graphic to hover-to-play (#10055)

Fix #6060
This commit is contained in:
Eugen Rochko
2019-02-15 23:33:25 +01:00
committed by GitHub
parent 71e28ba399
commit 80388a3ffe
4 changed files with 26 additions and 8 deletions

View File

@ -0,0 +1,13 @@
import ready from '../mastodon/ready';
ready(() => {
const image = document.querySelector('img');
image.addEventListener('mouseenter', () => {
image.src = '/oops.gif';
});
image.addEventListener('mouseleave', () => {
image.src = '/oops.png';
});
});

View File

@ -100,12 +100,14 @@ body {
vertical-align: middle;
margin: 20px;
img {
display: block;
max-width: 470px;
width: 100%;
height: auto;
margin-top: -120px;
&__illustration {
img {
display: block;
max-width: 470px;
width: 100%;
height: auto;
margin-top: -120px;
}
}
h1 {