Disable reguler scrolling until lottie animation completed

Replace the 3000 in the script with the animation duration

window.addEventListener(“load”, (event) => {

document.querySelector(“body”).style.overflow = “hidden”;

});

setTimeout(unfreez, 3000);

function unfreez() {

document.querySelector(“body”).style.overflow = “auto”;

}