From 47ad46c0e5765715a428989ce5081ffde02bd8c4 Mon Sep 17 00:00:00 2001 From: echo <91651232+exhq@users.noreply.github.com> Date: Tue, 25 Oct 2022 11:17:36 +0330 Subject: mean vendy --- static/wheremessagelogger/bruh.js | 31 +++++++++++++++++++++++++++++++ static/wheremessagelogger/index.html | 30 ++++++++++++++++++++++++++++++ static/wheremessagelogger/lmfao.css | 33 +++++++++++++++++++++++++++++++++ 3 files changed, 94 insertions(+) create mode 100644 static/wheremessagelogger/bruh.js create mode 100644 static/wheremessagelogger/index.html create mode 100644 static/wheremessagelogger/lmfao.css (limited to 'static') diff --git a/static/wheremessagelogger/bruh.js b/static/wheremessagelogger/bruh.js new file mode 100644 index 0000000..0b103f0 --- /dev/null +++ b/static/wheremessagelogger/bruh.js @@ -0,0 +1,31 @@ +/* + * Basic Count Up from Date and Time + * Author: @mrwigster / https://guwii.com/bytes/count-date-time-javascript/ + */ +window.onload = function() { + // Month Day, Year Hour:Minute:Second, id-of-element-container + countUpFromTime("Oct 21, 2022 15:00:00", 'countup1'); // ****** Change this line! + }; + function countUpFromTime(countFrom, id) { + countFrom = new Date(countFrom).getTime(); + var now = new Date(), + countFrom = new Date(countFrom), + timeDifference = (now - countFrom); + + var secondsInADay = 60 * 60 * 1000 * 24, + secondsInAHour = 60 * 60 * 1000; + + days = Math.floor(timeDifference / (secondsInADay) * 1); + hours = Math.floor((timeDifference % (secondsInADay)) / (secondsInAHour) * 1); + mins = Math.floor(((timeDifference % (secondsInADay)) % (secondsInAHour)) / (60 * 1000) * 1); + secs = Math.floor((((timeDifference % (secondsInADay)) % (secondsInAHour)) % (60 * 1000)) / 1000 * 1); + + var idEl = document.getElementById(id); + idEl.getElementsByClassName('days')[0].innerHTML = days; + idEl.getElementsByClassName('hours')[0].innerHTML = hours; + idEl.getElementsByClassName('minutes')[0].innerHTML = mins; + idEl.getElementsByClassName('seconds')[0].innerHTML = secs; + + clearTimeout(countUpFromTime.interval); + countUpFromTime.interval = setTimeout(function(){ countUpFromTime(countFrom, id); }, 1000); + } \ No newline at end of file diff --git a/static/wheremessagelogger/index.html b/static/wheremessagelogger/index.html new file mode 100644 index 0000000..d4ba7dc --- /dev/null +++ b/static/wheremessagelogger/index.html @@ -0,0 +1,30 @@ + + +
+ + + + + + + + + +