This commit is contained in:
2023-04-25 13:02:32 +00:00
commit bd84da2d52
6 changed files with 51 additions and 0 deletions

BIN
augie_front_page.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 361 KiB

BIN
butt.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 241 KiB

BIN
explosion.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 330 KiB

32
explosion.html Normal file
View File

@@ -0,0 +1,32 @@
<!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>

BIN
explosion_once.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 330 KiB

19
index.html Executable file
View File

@@ -0,0 +1,19 @@
<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<title>Augie Averbach</title>
<style>
img {
position: fixed;
height: 100vh;
width: 100vw;
}
</style>
</head>
<body>
<a href="/explosion.html">
<img src="augie_front_page.jpg">
</a>
</body>
</html>