JavaScript must be enabled to play.
Browser lacks capabilities required to play.
Upgrade or switch to another browser.
Loading…
<<display 'Initialize'>><div id="first-passage"><div class="googleFont">[[Generate time...|Time]] [[Current time...|Current Time]]</div>
<<nobr>><<set $randomminute to 0>><<set $randomhour to 0>><<set $AM to 0>><<set $PM to 0>><<addclass 'body' 'default'>><</nobr>>
<<display 'Initialize'>><div id="first-passage"><div class="googleFont"><<nobr>> <<set $randomhour to random(1, 12)>> <<set $randomminute to random(0, 59)>> <<set $isPM to either(0, 1)>> <<set $time to `${$randomhour}:${$randomminute.toString().padStart(2, '0')} ${$isPM ? 'PM' : 'AM'}`>> <<set _timeParts to $time.split(':')>> <h1> <<print _timeParts[0]>><span class="blink">:</span><<print _timeParts[1]>> </h1> <<set $bodyClass to ($isPM ? 'PM':'AM') + $randomhour>> <<addclass 'body' $bodyClass>><</nobr>>[[More time...|Time]] [[Current time...|Current Time]]</div></div>
<<display 'Initialize'>><div id="first-passage"><div class="googleFont"> <<nobr>> <<set _now to new Date()>> <<set $randomhour to _now.getHours() % 12 || 12>> <<set $randomminute to _now.getMinutes()>> <<set $isPM to _now.getHours() >= 12>> <<set $time to `${$randomhour}:${$randomminute.toString().padStart(2, '0')} ${$isPM ? 'PM' : 'AM'}`>> <<set _timeParts to $time.split(':')>> <h1> <<print _timeParts[0]>><span class="blink">:</span><<print _timeParts[1]>> </h1> <<set $bodyClass to ($isPM ? 'PM':'AM') + $randomhour>> <<addclass 'body' $bodyClass>><</nobr>> [[Refresh time...|Current Time]] [[Time skip...|Time]]</div></div>