hid gif on load

This commit is contained in:
Rushil Umaretiya 2022-06-21 15:27:45 -04:00
parent f28b65f9ab
commit cd3273d119

View File

@ -55,6 +55,11 @@
background-position: 100% 0;
}
}
img {
display: none;
}
</style>
</head>
<body>
@ -65,7 +70,7 @@
<a href="https://nginx.org/">nginx.org</a>.<br>
Commercial support is available at
<a href="https://nginx.com/">nginx.com</a>.</p>
<img src="crucial.gif" />
<img id="gif" src="crucial.gif" />
<p><em>"If at first you don't succeed, skydiving may not be for you."</em></p>
@ -74,6 +79,8 @@
<script>
window.onclick = () => {
document.getElementById("startup").play();
document.getElementById("gif").style.display = "block"
}
</script>
</body>