diff --git a/clock.js b/clock.js index d1ce7d0..efe7cae 100644 --- a/clock.js +++ b/clock.js @@ -8,6 +8,8 @@ quantic: 0x100, chronon: 0x1000, eonstrip: 0x10000, + megasequence: 0x100000, + cosmocycle: 0x1000000, }; function floorDiv(a, b) { @@ -93,9 +95,13 @@ const xf = (cob % COBIE_UNITS.quantic) / COBIE_UNITS.quantic; const qf = (cob % COBIE_UNITS.chronon) / COBIE_UNITS.chronon; const cf = (cob % COBIE_UNITS.eonstrip) / COBIE_UNITS.eonstrip; + const ef = (cob % COBIE_UNITS.megasequence) / COBIE_UNITS.megasequence; + const mf = (cob % COBIE_UNITS.cosmocycle) / COBIE_UNITS.cosmocycle; document.getElementById('handXeno').style.transform = `rotate(${xf * 360}deg)`; document.getElementById('handQuantic').style.transform = `rotate(${qf * 360}deg)`; document.getElementById('handChronon').style.transform = `rotate(${cf * 360}deg)`; + document.getElementById('handEonstrip').style.transform = `rotate(${ef * 360}deg)`; + document.getElementById('handMegasequence').style.transform = `rotate(${mf * 360}deg)`; } function initClock() { diff --git a/index.html b/index.html index fe038e7..c02e6b9 100644 --- a/index.html +++ b/index.html @@ -24,6 +24,8 @@