|
|
|
@ -9,11 +9,13 @@ document.addEventListener("DOMContentLoaded", run);
|
|
|
|
|
// global var to control the animation of the text
|
|
|
|
|
var runTextAnimation = true;
|
|
|
|
|
function run() {
|
|
|
|
|
initializeClickHandler();
|
|
|
|
|
initialize();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function initializeClickHandler() {
|
|
|
|
|
function initialize() {
|
|
|
|
|
let welcome = document.getElementById("welcome");
|
|
|
|
|
let exhibit = document.getElementById("exhibition");
|
|
|
|
|
let notice = document.getElementById("overlay-arrow");
|
|
|
|
|
flyingText(welcome);
|
|
|
|
|
document.addEventListener("click", (e) => {
|
|
|
|
|
let overlay = document.getElementById("info-box");
|
|
|
|
@ -28,6 +30,11 @@ function initializeClickHandler() {
|
|
|
|
|
hideElement(overlay);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// remove the indicator on enter
|
|
|
|
|
exhibit.addEventListener("mouseenter", () => {
|
|
|
|
|
notice.remove();
|
|
|
|
|
}, {once: true});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function handleThumb(overlay, elem) {
|
|
|
|
|