Zoom out to see ->
Use Code at the bottom to make an automatic countdown of days into each countdown slots.On the left sidebar, click on "Insert", and then go to the </> Others tab to insert the code.
- Change all "test" id to a unique different id for each countdown.
- Change the date of the countdown.
- After it's inserted, resize these it vertically to 32 px by 60
Release Timeline
Insert patch number.each represents the patch number.
13.5 Patch 2
<p id="test" style="color:white; font-size:30px;font-family:geogrotesque-rg; line-height:1.1; text-align:center; cursor:default"></p>
<script>
var countDownDate = new Date("Sep 20, 2021 18:00:00").getTime();
var x = setInterval(function() {
var now = new Date().getTime();
var distance = countDownDate - now;
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
if (days > 1) {
document.getElementById("test").innerHTML = days;
} else if (days == 1) {
document.getElementById("test").innerHTML = days;
} else if (distance > 0) {
document.getElementById("test").innerHTML = "1"
} else if (distance < 0) {
clearInterval(x);
document.getElementById("test").innerHTML = "Delay";
}
}, 1000);
</script>
20 Feb
Beta
Download
Days
6 Mar
RC
Download
Pre-Release Notes
20 Mar
Official
Release Notes
Download
13.5 Patch 2 External RT
contentcreationteam
Created on January 31, 2023
Start designing with a free template
Discover more than 1500 professional designs like these:
View
Discover Your AI Assistant
View
Vision Board
View
SWOT Challenge: Classify Key Factors
View
Explainer Video: Keys to Effective Communication
View
Explainer Video: AI for Companies
View
Corporate CV
View
Flow Presentation
Explore all templates
Transcript
Zoom out to see ->
Use Code at the bottom to make an automatic countdown of days into each countdown slots.On the left sidebar, click on "Insert", and then go to the </> Others tab to insert the code.
Release Timeline
Insert patch number.each represents the patch number.
13.5 Patch 2
<p id="test" style="color:white; font-size:30px;font-family:geogrotesque-rg; line-height:1.1; text-align:center; cursor:default"></p> <script> var countDownDate = new Date("Sep 20, 2021 18:00:00").getTime(); var x = setInterval(function() { var now = new Date().getTime(); var distance = countDownDate - now; var days = Math.floor(distance / (1000 * 60 * 60 * 24)); if (days > 1) { document.getElementById("test").innerHTML = days; } else if (days == 1) { document.getElementById("test").innerHTML = days; } else if (distance > 0) { document.getElementById("test").innerHTML = "1" } else if (distance < 0) { clearInterval(x); document.getElementById("test").innerHTML = "Delay"; } }, 1000); </script>
20 Feb
Beta
Download
Days
6 Mar
RC
Download
Pre-Release Notes
20 Mar
Official
Release Notes
Download