self-rolled swatch clock

This commit is contained in:
etherware-novice 2024-08-09 16:00:22 -05:00
parent 3ff8ddbe19
commit 593c383681
No known key found for this signature in database
GPG Key ID: 5DB73B4D57B9D701
2 changed files with 28 additions and 1 deletions

View File

@ -1,3 +1,4 @@
time:
<span id="swatchClock">@000</span>
<script defer src="https://melonking.net/scripts/swatchTime.js"></script>
<script src="/assets/js/swatch.js"></script>

26
assets/js/swatch.js Normal file
View File

@ -0,0 +1,26 @@
function getSwatch(showCenti = true) {
var date = new Date();
var hours = date.getUTCHours();
var minutes = date.getUTCMinutes();
var seconds = date.getUTCSeconds();
var ms = date.getUTCMilliseconds();
hours = hours == 23 ? 0 : hours + 1;
var timeMS = ((hours * 60 + minutes) * 60 + seconds) * 1000 + ms;
var trueSwatch = Math.abs(timeMS / 86400);
if (showCenti) {
return trueSwatch.toFixed(2);
}
else {
return Math.floor(trueSwatch);
}
}
var disp = document.getElementById('swatchClock');
function updateSwatch() {
disp.innerHTML = '@' + getSwatch();
}
setInterval(updateSwatch, 864);