54

我想在加载整个页面之前显示一个加载栏。现在,我只是使用一个小的延迟:

$(document).ready(function(){
    $('#page').fadeIn(2000);
});

该页面已经使用了 jQuery。

注意:我已经尝试过了,但它对我不起作用:脚本运行时加载栏

我还尝试了其他解决方案。在大多数情况下,页面会照常加载,或者页面根本不会加载/显示。

4

5 回答 5

89

使用 div#overlay与您的加载信息 / .gif 将覆盖您的所有页面:

<div id="overlay">
     <img src="loading.gif" alt="Loading" />
     Loading...
</div>

jQuery:

$(window).load(function(){
   // PAGE IS FULLY LOADED  
   // FADE OUT YOUR OVERLAYING DIV
   $('#overlay').fadeOut();
});

这是一个带有加载栏的示例:

jsBin 演示

;(function(){
  function id(v){ return document.getElementById(v); }
  function loadbar() {
    var ovrl = id("overlay"),
        prog = id("progress"),
        stat = id("progstat"),
        img = document.images,
        c = 0,
        tot = img.length;
    if(tot == 0) return doneLoading();

    function imgLoaded(){
      c += 1;
      var perc = ((100/tot*c) << 0) +"%";
      prog.style.width = perc;
      stat.innerHTML = "Loading "+ perc;
      if(c===tot) return doneLoading();
    }
    function doneLoading(){
      ovrl.style.opacity = 0;
      setTimeout(function(){ 
        ovrl.style.display = "none";
      }, 1200);
    }
    for(var i=0; i<tot; i++) {
      var tImg     = new Image();
      tImg.onload  = imgLoaded;
      tImg.onerror = imgLoaded;
      tImg.src     = img[i].src;
    }    
  }
  document.addEventListener('DOMContentLoaded', loadbar, false);
}());
*{margin:0;}
body{ font: 200 16px/1 sans-serif; }
img{ width:32.2%; }

#overlay{
  position:fixed;
  z-index:99999;
  top:0;
  left:0;
  bottom:0;
  right:0;
  background:rgba(0,0,0,0.9);
  transition: 1s 0.4s;
}
#progress{
  height:1px;
  background:#fff;
  position:absolute;
  width:0;                /* will be increased by JS */
  top:50%;
}
#progstat{
  font-size:0.7em;
  letter-spacing: 3px;
  position:absolute;
  top:50%;
  margin-top:-40px;
  width:100%;
  text-align:center;
  color:#fff;
}
<div id="overlay">
  <div id="progstat"></div>
  <div id="progress"></div>
</div>

<div id="container">
  <img src="http://placehold.it/3000x3000/cf5">
</div>

于 2012-06-17T16:06:07.763 回答
23

HTML

<div class="preload">
<img src="http://i.imgur.com/KUJoe.gif">
</div>

<div class="content">
I would like to display a loading bar before the entire page is loaded. 
</div>

JAVASCRIPT

$(function() {
    $(".preload").fadeOut(2000, function() {
        $(".content").fadeIn(1000);        
    });
});​

CSS

.content {display:none;}
.preload { 
    width:100px;
    height: 100px;
    position: fixed;
    top: 50%;
    left: 50%;
}
​

演示

于 2012-06-17T16:22:35.170 回答
9

每当您尝试在此窗口中加载任何数据时,都会加载此 gif。

HTML

做一个div

<div class="loader"></div>

CSS

.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('https://lkp.dispendik.surabaya.go.id/assets/loading.gif') 50% 50% no-repeat rgb(249,249,249);

jQuery

$(window).load(function() {
        $(".loader").fadeOut("slow");
});
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>

在此处输入图像描述

于 2019-05-30T09:56:07.617 回答
2

我最近在 VanillaJS 中为一个项目制作了一个页面加载器,只是想分享它,因为所有其他答案都是基于 jQuery 的。这是一个即插即用的单线。

let settings={backgroundColor:"#2774ab",filterBrightness:2,timeOnScreen:100},u=document.querySelector("*"),s=document.createElement("style"),a=document.createElement("div"),m="http://www.w3.org/2000/svg",g=document.createElementNS(m,"svg"),c=document.createElementNS(m,"circle");document.head.appendChild(s),s.innerHTML="@keyframes swell{to{transform:rotate(360deg)}}",a.setAttribute("style","background-color:"+settings.backgroundColor+";color:"+settings.backgroundColor+";display:flex;align-items:center;justify-content:center;position:fixed;top:0;height:100vh;width:100vw;z-index:2147483647"),document.body.prepend(a),g.setAttribute("style","height:50px;filter:brightness("+settings.filterBrightness+");animation:.3s swell infinite linear"),g.setAttribute("viewBox","0 0 100 100"),a.prepend(g),c.setAttribute("cx","50"),c.setAttribute("cy","50"),c.setAttribute("r","35"),c.setAttribute("fill","none"),c.setAttribute("stroke","currentColor"),c.setAttribute("stroke-dasharray","165 57"),c.setAttribute("stroke-width","10"),g.prepend(c),u.style.pointerEvents="none",u.style.userSelect="none",u.style.cursor="wait",window.onload=(()=>{setTimeout(()=>{u.style.pointerEvents="",u.style.userSelect="",u.style.cursor="",a.remove()},settings.timeOnScreen)});

基础知识

  • 生成<script>附加到元素的<head>元素,包含任何所需的样式。
  • 生成一个<div>元素,作为覆盖,附加到<body>元素。
  • 生成一个<svg>元素,充当加载器,附加到先前生成的<div>元素。
  • window.onload自行生成的元素上会自动删除。

最新版本可在我的GitHub 上找到

演示

设置

let settings = {
    backgroundColor: "#2774ab",
    filterBrightness: 2,
    timeOnScreen: 100
}, //...
选项 描述
backgroundColor 有关可接受的值,请参阅MDN Web Docs 颜色background-color CSS 属性设置元素的背景颜色。默认为 Wordpress 深蓝色口音#2774ab #2774ab
filterBrightness 数字百分比svg加载器元素的亮度( brightness() CSS 函数)。低于的值100%会使加载器变暗,而高于的值会100%使其变亮。插值的空白值为1。默认为2
timeOnScreen 积极integer的。屏幕上的时间附加到页面加载时间。默认为100毫秒。
于 2021-01-12T20:33:29.727 回答
-1

Semantic UI might also help, with just simple one liner to show and to hide the loading icon.

Eg: <div class="ui active centered inline loader"></div>

Source: https://semantic-ui.com/elements/loader.html

Found a code sample: https://codepen.io/fujiyamayuta/pen/JBxxJO

Although, there is a small typo in the JS file of the above code sample, corrected is shown below:

// ** Loader ON
$('#dimmer').dimmer('show');

// ** Loader OFF
// $('#dimmer').dimmer('hide');
于 2021-05-04T09:00:33.663 回答