Welcome Loading … Page with Jquery

前端 未结 5 1552
北荒
北荒 2021-01-03 03:23

How can I implement a welcome screen for 5 seconds giving information like Loading application ... + some application infos...while the main page loads in background.

5条回答
  •  醉梦人生
    2021-01-03 03:48

    You would show your welcome message as the page loads (theoretically as an absolutely positioned overlay). You could then use jQuery to kick off a timer:

    $(document).ready(function(){
        setTimeout(function(){
            $('div#overlay').fadeOut();
        }, 5000);
    });
    

提交回复
热议问题