gun/examples/game/nts.html
Andrea Puddu 4c8eb2c112
Update nts.html
Change font family to monospace to prevent the text moving
2019-05-03 12:21:27 +02:00

20 lines
608 B
HTML

<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body style="text-align: center;">
<h1 id="when" style="font-size: 7vw; margin-top: 43vh; font-family: monospace;"></h1>
</body>
<script src="/gun.js"></script>
<script src="/gun/nts.js"></script>
<script>
window.gun = Gun(location.origin+'/gun');
requestAnimationFrame(function now(){
requestAnimationFrame(now);
var time = new Date(Gun.state());
var print = time.toLocaleString() +' '+ (time.getMilliseconds()/1000).toFixed(3).slice(1);
when.innerHTML = print;
});
</script>
</html>