self-rolled swatch clock
This commit is contained in:
parent
3ff8ddbe19
commit
593c383681
@ -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
26
assets/js/swatch.js
Normal 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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user