目前,当用户登陆首页时,我的预加载器出现了,这很好,但是我想了解如何确保每次会话仅显示一次,所以如果您导航回首页,则不会与目前一样,它会再次发生,无论何时加载首页。
window.addEventListener("load", function () {
const loader = document.querySelector(".loader");
loader.className += " hidden";
});
.loader {
position: fixed;
z-index: 99;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #F4F4F4;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.loader img {
width: 60px;
height: 60px;
}
.loader.hidden {
animation: fadeOut 1s;
animation-delay: 3.5s;
animation-fill-mode: forwards;
}
@keyframes fadeOut {
100% {
opacity: 0;
visibility: hidden;
}
}
<div class="loader">
<img src="https://placehold.it/200x200" alt="">
<h1>PENSACOLA</h1>
</div>
答案 0 :(得分:1)
您可以使用会话存储
window.addEventListener("load", function () {
if (!sessionStorage.viewed){
const loader = document.querySelector(".loader");
loader.className += " hidden";
sessionStorage.viewed = 1;
}else{
const loader = document.querySelector(".loader");
loader.style.display = "none";
}
});
说明:
页面加载后,if
语句将在发现该语句为true后检查是否未将sessionStorage设置为查看(默认情况下未将sessionStorage设置为查看),然后将运行所需的代码。运行代码后,使用 sessionStorage.viewed = 1;
将sessionStorage.viewed
语句设置为true。
因此,如果您在同一会话中重新加载页面,则if语句将不会运行,因为我们将sessionStorage.viewed
语句设置为true以前的时间。
在关闭会话之前,会发生同样的事情。