0

在页面加载时显示 div 的脚本使用 jQuery 来模拟闪屏?

4

2 回答 2

0

那很简单!你可以使用 jQuery fadeOut()!这是代码:

CSS

#splashscreen {
    height: 100%;
    width: 100%;
    z-index: 99;
}

上面的 CSS 将使启动画面填满整个页面并高于一切。

jQuery JS

$(window).load(function() {
    $('#splashscreen').fadeOut('slow');
});

这样做的目的是,当它检测到页面已加载时,它会慢慢淡出闪屏 div。

HTML

<div id="splashscreen">
    Put your splashscreen content here. It can be anything!
</div>

这就是创建启动画面所需的全部内容。不幸的是,这不能在 JSFiddle 中模拟。

于 2013-02-23T23:19:22.273 回答
-1

您可以在加载脚本的某些部分后调用函数来计时加载:

$(document).ready(function() {
    var oneLoaded;
    function partOneLoaded() {
        oneLoaded = 1;
        loadReady();
    }
    var twoLoaded;  
    $('div').load('../inc/salesstatus.php, function() {
        twoLoaded = 1;
        loadReady();
    });      
    function loadReady(){
        if (oneLoaded == 1 && twoLoaded == 1)
            $('#loadcontainer').fadeOut('slow');
    }

/* ****rest of your script here  ****** */

// ie) at the end of your scripts: 

partOneLoaded();    

});

加载某些内容或运行脚本后,您将调用您的函数,并且它们每个都尝试调用 loadReady()。只有最后一次尝试才能成功淡出您的 div。在脚本末尾调用一次,如果 loadcontainer 在加载其他内容之前淡出,则在尚未加载的项目末尾添加另一个函数。

我不会进入加载 div 的 css 和 html,因为它超出了您的问题范围。

你的问题很模糊。将来,请提供更多详细信息,以便我们更好地了解您正在使用的内容。

于 2012-04-07T04:46:18.847 回答