Welcome Loading … Page with Jquery

前端 未结 5 1557
北荒
北荒 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:45

    just for anyone in the future who finds this, i found a more elegant solution that works.

    http://www.jnorton.co.uk/blog/jquery-check-if-all-content-has-been-loaded

    here is how i used it:

    $(document).ready(function(){
        $(window).load(function() {$("#welcome").fadeOut('fast'); })
    });
    

提交回复
热议问题