// fade in images function imgFade(obj, time = 200) { obj.style.opacity = null; obj.style.animation = `imgFadeIn ${time}ms`; setTimeout(() => { obj.style.animation = null; }, time); } window.onload = function () { const times = document.querySelectorAll('.time'); for (let i = 0; i < times.length; i++) { // Remove milliseconds const raw = times[i].innerHTML.split('.')[0]; // Parse YYYY-MM-DD HH:MM:SS to Date object const time = raw.split(' ')[1]; const date = raw.split(' ')[0].split('-'); // Format to YYYY/MM/DD HH:MM:SS and convert to UTC Date object const dateTime = new Date(`${date[0]}/${date[1]}/${date[2]} ${time} UTC`); // Convert to local time times[i].innerHTML = `${dateTime.toLocaleDateString()} ${dateTime.toLocaleTimeString()}`; } // Top Of Page button const topOfPage = document.querySelector('.top-of-page'); if (document.body.scrollTop > 300 || document.documentElement.scrollTop > 20) { topOfPage.classList.add('show'); } else { topOfPage.classList.remove('show'); } topOfPage.onclick = function () { document.body.scrollTop = 0; document.documentElement.scrollTop = 0; } // Info button const infoButton = document.querySelector('.info-button'); if (infoButton) { if (document.body.scrollTop > 300 || document.documentElement.scrollTop > 20) { infoButton.classList.remove('show'); } else { infoButton.classList.add('show'); } infoButton.onclick = function () { popUpShow('OnlyLegs', 'v0.1.4 ' + 'using Phosphoricons and Flask.' + '
Made by Fluffy and others with ❤️'); } } }; window.onscroll = function () { // Top Of Page button const topOfPage = document.querySelector('.top-of-page'); if (document.body.scrollTop > 300 || document.documentElement.scrollTop > 20) { topOfPage.classList.add('show'); } else { topOfPage.classList.remove('show'); } // Info button const infoButton = document.querySelector('.info-button'); if (infoButton) { if (document.body.scrollTop > 300 || document.documentElement.scrollTop > 20) { infoButton.classList.remove('show'); } else { infoButton.classList.add('show'); } } };