first
This commit is contained in:
BIN
augie_front_page.jpg
Normal file
BIN
augie_front_page.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 361 KiB |
BIN
explosion.gif
Normal file
BIN
explosion.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 330 KiB |
32
explosion.html
Normal file
32
explosion.html
Normal 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
BIN
explosion_once.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 330 KiB |
19
index.html
Executable file
19
index.html
Executable 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>
|
||||||
Reference in New Issue
Block a user