📜  如何仅显示一次启动屏幕 html 页面 - Html 代码示例

📅  最后修改于: 2022-03-11 14:53:27.229000             🧑  作者: Mango

代码示例1
.home-page {
    display: none;
}

$(document).ready(function(){

    if (sessionStorage.getItem('splash') !== 'true') {
        $('.splash_section').show();
        sessionStorage.setItem('splash','true');
    }
    else {
        $('.home-page').fadeIn();
    }    
});