$(".retop").css("display", "flex"); } else { $(".retop").hide(); } } $(".retop").click(function () { timer = setInterval(function () { let scrollTop = document.documentElement.scrollTop || window.pageYOffset || document.body.scrollTop; document.documentElement.scrollTop = document.body.scrollTop = Math.floor(scrollTop - 100); if (scrollTop === 0 || document.documentElement.scrollTop === 0) { clearInterval(timer); setTimeout(() => { swiperNav.update(true); }, 150); } }, 10); }); window.addEventListener("scroll", function () { retop(); swiperNav.update(true); }); window.addEventListener("resize", function () { initNavSwiper(); }); $(".module").each(function (index, el) { $(this) .find(".tab-item") .click(function () { if (!$(this).hasClass("active")) { $(this).addClass("active").siblings().removeClass("active"); $(el) .find(".tab-list") .eq($(this).index()) .addClass("active") .siblings() .removeClass("active"); $(el) .find(".tab-list") .eq($(this).index()) .find(".lazyload") .lazyload(); } $(".module-tab-drop").removeClass("module-tab-drop"); $(this) .parents(".module-tab-items") .siblings(".module-tab-name") .children(".module-tab-value") .text($(this).attr("data-dropdown-value")); }); });