CSS: Position loading indicator in the center of the screen

后端 未结 7 1234
无人及你
无人及你 2021-01-30 21:00

How can I position my loading indicator in the center of the screen. Currently I\'m using a little placeholder and it seems to work fine. However, when I scroll down, the loadin

7条回答
  •  伪装坚强ぢ
    2021-01-30 21:42

    .loader{
      position: fixed;
      left: 0px;
      top: 0px;
      width: 100%;
      height: 100%;
      z-index: 9999;
      background: url('//upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Phi_fenomeni.gif/50px-Phi_fenomeni.gif') 
                  50% 50% no-repeat rgb(249,249,249);
    }

提交回复
热议问题