diff options
| author | 2023-11-06 02:05:14 +0800 | |
|---|---|---|
| committer | 2023-11-06 02:05:14 +0800 | |
| commit | 70c118d37cd784861bec712000d7014302591256 (patch) | |
| tree | c180ff4e252e65e8ec62c28fb6237d8801ca5d21 /site/public/js/script.js | |
| parent | 1fc06e39cf5d483921655a8e859b4e80a40d692b (diff) | |
| download | HydroRoll-70c118d37cd784861bec712000d7014302591256.tar.gz HydroRoll-70c118d37cd784861bec712000d7014302591256.zip | |
fix(site): 修复了错误的主题索引
chore(site): 删除了无用主题文件
Diffstat (limited to 'site/public/js/script.js')
| -rw-r--r-- | site/public/js/script.js | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/site/public/js/script.js b/site/public/js/script.js new file mode 100644 index 0000000..f41ff4b --- /dev/null +++ b/site/public/js/script.js @@ -0,0 +1,31 @@ +// Get the release date from the data attribute +var releaseDateStr = document.getElementById("countdown").getAttribute("data-release"); + +// Create a JavaScript Date object using the release date string +var countDownDate = new Date(releaseDateStr); + +// Update the count down every 1 second +var x = setInterval(function() { + + // Get todays date and time + var now = new Date().getTime(); + + // Find the distance between now an 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); + + // Display the result in an element with id="demo" + document.getElementById("demo").innerHTML = days + "天 " + hours + "小时 " + + minutes + "分 " + seconds + "秒 "; + + // If the count down is finished, write some text + if (distance < 0) { + clearInterval(x); + document.getElementById("demo").innerHTML = "EXPIRED"; + } +}, 1000);
\ No newline at end of file |
