loading

css:

/*loading*/
    .load {
      position: fixed;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100%;
      z-index: 20;
      text-align: center;
      display: block;
    }
    .load img{
      margin-top: 85%;
      zoom: 1.2;
      padding: 10px;
      background: rgba(0,0,0,0.7);
      border-radius: 5px;
      width: 50px;
    }

html:

js:

$('.load').show();
$('.load').hide();

你可能感兴趣的:(loading)