function hideScreenshot() { const screenshotView = document.getElementById('screenshot'); screenshotView.classList.remove('screenshot-show'); screenshotView.classList.add('screenshot-hide'); screenshotView.src = 'https://gottcode.org/clock.svg'; const screenshotClose = document.getElementById('screenshot-close-button'); screenshotClose.classList.remove('screenshot-close'); screenshotClose.classList.add('screenshot-hide'); } function showScreenshot(path) { this.removeAttribute('href'); const screenshotView = document.getElementById('screenshot'); screenshotView.classList.remove('screenshot-hide'); screenshotView.classList.add('screenshot-show'); screenshotView.src = path; const screenshotClose = document.getElementById('screenshot-close-button'); screenshotClose.classList.remove('screenshot-hide'); screenshotClose.classList.add('screenshot-close'); }