Click the pyramid to speak with ANNIE
🛑 Stop Speaking
<script>
window.addEventListener('load', function() {
const loadingScreen = document.getElementById('hamster-loading-screen');
if (loadingScreen) {
loadingScreen.style.transition = 'opacity 3.0s ease';
loadingScreen.style.opacity = '0';
setTimeout(() => loadingScreen.style.display = 'none', 500);
}
});
window.onload = function () {
// Trigger fade out after 3 seconds or when loading is done
setTimeout(function() {
document.getElementById('hamster-loading-screen').classList.add('hide');
}, 1000); // Customize delay as per your need
};
function updateTime() {
const outputElement = document.getElementById("output");
const date = new Date();
const formattedTime = `${date.getHours()}:${date.getMinutes()}:${date.getSeconds()}`;
outputElement.innerHTML = formattedTime;
}
// Update the time every second
setInterval(updateTime, 1000);
</script>
<script>
document.addEventListener("DOMContentLoaded", function () {
const text = "Welcome to GeneScope";
let index = 0;
const speed = 100;
const typewriter = document.getElementById("typewriter");
function type() {
if (index < text.length) {
typewriter.textContent += text.charAt(index);
index++;
setTimeout(type, speed);
}
}
type();
});
</script>
<script>
const BACKEND_URL = "