Bora
1
Q:

how to show a splash screen html page only once

.home-page {
    display: none;
}

$(document).ready(function(){

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

New to Communities?

Join the community