another silly dumb page ^^ (the time-zone)
This commit is contained in:
parent
5f31c7193a
commit
c3a89021fd
@ -3,6 +3,7 @@ home,/
|
||||
about,/about
|
||||
comics,/comic
|
||||
link dump,/linklink
|
||||
timezone,/silly/timezone
|
||||
guestbook,http://users3.smartgb.com/g/g.php?a=s&i=g36-36498-b6
|
||||
thanks page,/thanks
|
||||
github repo,https://github.com/etherware-novice/comicsite,/assets/images/blinkers/cooltext462925409710685.gif
|
||||
|
|
18
assets/js/hexclock.js
Normal file
18
assets/js/hexclock.js
Normal file
@ -0,0 +1,18 @@
|
||||
function ttHex()
|
||||
{
|
||||
var d = new Date()
|
||||
var h = d.getHours();
|
||||
var m = d.getMinutes();
|
||||
var s = d.getSeconds();
|
||||
|
||||
if (h<=9) {h = '0'+h};
|
||||
if (m<=9) {m = '0'+m};
|
||||
if (s<=9) {s = '0'+s};
|
||||
|
||||
return '#'+h+m+s;
|
||||
}
|
||||
|
||||
function updateHex() {
|
||||
document.getElementById('hexClock').innerHTML = ttHex();
|
||||
}
|
||||
setInterval(updateHex, 1000);
|
@ -18,9 +18,15 @@ function getSwatch(showCenti = true) {
|
||||
}
|
||||
}
|
||||
|
||||
var disp = document.getElementById('swatchClock');
|
||||
function hueSwatch() {
|
||||
let swatchPercent = getSwatch() / 1000;
|
||||
let degree = Math.floor(360 * swatchPercent);
|
||||
|
||||
return degree;
|
||||
}
|
||||
|
||||
function updateSwatch() {
|
||||
disp.innerHTML = '@' + getSwatch();
|
||||
document.getElementById('swatchClock').innerHTML = '@' + getSwatch();
|
||||
}
|
||||
setInterval(updateSwatch, 864);
|
||||
|
||||
|
29
silly/timezone.html
Normal file
29
silly/timezone.html
Normal file
@ -0,0 +1,29 @@
|
||||
---
|
||||
title: the zone without time
|
||||
---
|
||||
<h1><span id="rgbClock"></span> - <span id="hueClock"></span>deg</h1>
|
||||
<h2>click on the page if <a href="http://listen.hatnote.com/#en">music</a> is not playing!</h2>
|
||||
<iframe id="mus" src="http://listen.hatnote.com/#en"
|
||||
style="visibility: hidden"></iframe>
|
||||
|
||||
<div class="background" id="psych" style="background-color: purple">
|
||||
</div>
|
||||
|
||||
<script src="https://melonking.net/scripts/dayColour.js"></script>
|
||||
<script src="/assets/js/hexclock.js"></script>
|
||||
<script>
|
||||
function colorUpdate() {
|
||||
let bg = document.getElementById('psych');
|
||||
//bg.style.backgroundColor = ttHex();
|
||||
bg.style.backgroundColor = "hsl(" + hueSwatch() + " 80% 60%)"
|
||||
document.getElementById('hueClock').innerHTML = hueSwatch();
|
||||
|
||||
let heads = document.querySelectorAll("h1, .main-content, .left-sidebar, .right-sidebar");
|
||||
heads.forEach((head) => {
|
||||
head.style.backgroundColor = getRGBeatNow();
|
||||
});
|
||||
|
||||
document.getElementById('rgbClock').innerHTML = getRGBeatNow();
|
||||
}
|
||||
setInterval(colorUpdate, 500);
|
||||
</script>
|
Loading…
x
Reference in New Issue
Block a user