33 lines
755 B
HTML
33 lines
755 B
HTML
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<title>Augie Averbach</title>
|
|
<style>
|
|
img {
|
|
position: fixed;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
}
|
|
#butt {
|
|
display: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<img id="explosion" src="explosion_once.gif">
|
|
<img id="butt" src="butt.jpeg">
|
|
</body>
|
|
<script>
|
|
const hideExplosion = () => document.getElementById("explosion").style.display = "none"
|
|
const showButt = () => document.getElementById("butt").style.display = "inline"
|
|
window.onload = () => {
|
|
setTimeout(() => {
|
|
hideExplosion()
|
|
showButt()
|
|
}, 3121)
|
|
}
|
|
</script>
|
|
</html>
|