add some description

This commit is contained in:
zyphlar 2023-05-24 13:28:40 -07:00
parent ad26a07b04
commit 69c73e522a
Signed by: will
GPG Key ID: 1159B930701263F3
2 changed files with 15 additions and 14 deletions

View File

@ -13,9 +13,7 @@
height: 180px; height: 180px;
} }
#sundial { #sundial {
background-image: url('roman-sundial.jpg'); display: none;
width: 664px;
height: 1000px;
} }
</style> </style>
</head> </head>
@ -34,7 +32,7 @@
height="300" height="300"
viewBox="0 0 79.374999 79.375" viewBox="0 0 79.374999 79.375"
version="1.1" version="1.1"
id="svg5" id="sundial"
xml:space="preserve" xml:space="preserve"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)" inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="sundial.svg" sodipodi:docname="sundial.svg"
@ -400,19 +398,22 @@
console.log("It is", romanMinuteEnglish, "hora", romanHour, romanNumeralHour); console.log("It is", romanMinuteEnglish, "hora", romanHour, romanNumeralHour);
if (msAfterSunrise > 0) { if (msAfterSunrise > 0) {
document.getElementById('clock').innerText = "It is "+romanMinuteEnglish+" Hora "+romanHour+" ("+romanNumeralHour+")"; document.getElementById('clock').innerHTML = "It is "+romanMinuteEnglish+" <a href='https://en.wikipedia.org/wiki/Roman_timekeeping'>Hora "+romanHour+" ("+romanNumeralHour+")</a><br/>AKA "+(Math.round(percentOfDay*10000)/100)+"% through today's daylight.";
} else {
document.getElementById('clock').innerText = "The sun isn't in the sky, go check the moon.";
}
let zeroHrDeg = 77; let zeroHrDeg = 77;
let twelveHrDeg = -81.5; let twelveHrDeg = -81.5;
let degreeSweep = twelveHrDeg-zeroHrDeg; let degreeSweep = twelveHrDeg-zeroHrDeg;
let sundialDegree = percentOfDay*degreeSweep*.975+zeroHrDeg; // .95 fudge factor let sundialDegree = percentOfDay*degreeSweep*.975+zeroHrDeg; // .975 fudge factor
let sundial = document.getElementById("sundial");
sundial.style["display"] = "block";
let sunshadow = document.getElementById("sunshadow"); let sunshadow = document.getElementById("sunshadow");
sunshadow.style["transform"] = "rotate("+sundialDegree+"deg)"; sunshadow.style["transform"] = "rotate("+sundialDegree+"deg)";
sunshadow.style["transform-origin"] = "top center"; sunshadow.style["transform-origin"] = "top center";
} else {
document.getElementById('clock').innerText = "The sun isn't in the sky, go check the moon.";
}
} }
getLocation(); getLocation();

View File

@ -6,7 +6,7 @@
height="300" height="300"
viewBox="0 0 79.374999 79.375" viewBox="0 0 79.374999 79.375"
version="1.1" version="1.1"
id="svg5" id="sundial"
xml:space="preserve" xml:space="preserve"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)" inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
sodipodi:docname="sundial.svg" sodipodi:docname="sundial.svg"

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB