Update docs again

This commit is contained in:
HotPizzaYT 2022-05-07 11:28:15 -05:00
commit 2e10b2fa7a
2 changed files with 60 additions and 2 deletions

54
docs/countdown.html Normal file
View file

@ -0,0 +1,54 @@
<!DOCTYPE HTML>
<html>
<head>
<meta name="viewport" content="width=320">
<style>
body {
background-color: #f0f0f0;
margin: 0px;
width: 320px;
}
p {
text-align: center;
font-size: 20px;
margin-top: 0px;
}
</style>
</head>
<body>
<p id="demo"></p>
<script>
// Set the date we're counting down to
var countDownDate = new Date(1654189200000).getTime();
// Update the count down every 1 second
var x = setInterval(function() {
// Get today's date and time
var now = new Date().getTime();
// Find the distance between now and the count down date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Output the result in an element with id="demo"
document.getElementById("demo").innerHTML = "<b>" + days + "d " + hours + "h "
+ minutes + "m " + seconds + "s until launch...</b>";
// If the count down is over, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("demo").innerHTML = "<h3>3DSTownSquare has been launched!<h3><a href='http://3dstownsquare.com/' target='_blank'>Visit it here!</a>";
}
}, 1000);
</script>
</body>
</html>

View file

@ -30,8 +30,9 @@
<center><font color="grey">What is this?</font></center>
<center>3DSTownSquare is about to launch soon!</center>
<center><a href="javascript:alert('I\'m getting an actual life and a job soon so I can pay for server expenses for the project. I am sure that I will get the job so that you don\'t have to wait any longer.\n\nHxOr1337, signing out')">Click me for more information</a></center>
<center><font color="grey">The launch date is May 24th 2022 (May 23rd in some areas) at the most, so keep looking out for the release.<br />
Please note that this release date may or may not get delayed. We will just have to see. (Delayed once, originally May 20th, now May 24th)<br />
<center><font color="grey">The launch date is June 3rd 2022 (June 2nd in the USA) at the most, so keep looking out for the release.<br />
Please note that this release date may or may not get delayed. We will just have to see. (Delayed 3 times, originally May 20th, then May 24th, now June 3rd)<br />
<a href="countdown.html" target="_blank">Check out the countdown!</a>
For now, you can play <a href='pong.html'>pong!</a></font></center>
<br/>
<marquee></marquee>
@ -40,6 +41,9 @@
<center>
Most likely the domain will be <a href='http://3dstownsquare.com' target='_blank'>http://3dstownsquare.com</a>. This is to make sure people trust the domain instead of cheaping out on a TK domain.
<br/>On day of release, this page will redirect to <b>3dstownsquare.com</b> and no longer be a notice
<br />
<br />
A little demo has been launched from <span id="from">9:00 AM CST</span> to <span id="to">11:00 PM CST</span> on either <a href="http://3dstownsquare.loca.lt/">http://3dstownsquare.loca.lt/</a> or <a href="http://3dsts.loca.lt/">http://3dstownsquare.loca.lt/</a>.
</center>
</div>
</body>