链接上的jQuery单击以启用加载图形

时间:2013-01-22 03:29:35

标签: jquery css html5 page-loading-message

所以我有这个脚本用于在页面加载时显示这个loding图形。

    $(window).load(function() { // makes sure the whole site is loaded
        $("#status").fadeOut(); // will first fade out the loading animation
        $("#preloader").delay(100).fadeOut("fast"); // will fade out the white DIV that covers the website.
    })

这会立即显示在页面加载上。知道如何在页面退出时进行此节目吗?那么对于用户来说,从点击到加载是否一致?

1 个答案:

答案 0 :(得分:0)

使用unload

$(window).unload(function() {
        $("#status").fadeOut(); 
        $("#preloader").delay(100).fadeOut("fast"); 
});