CSS:位置加载指示器位于屏幕中央

时间:2011-06-06 17:52:14

标签: css position center

如何将加载指示器放在屏幕中央。目前我正在使用一个小占位符,它似乎工作正常。但是,当我向下滚动时,加载指示器保持在该预定位置。如何使其跟随滚动,以便始终位于顶部?

#busy
{
    position: absolute;
    left: 50%;
    top: 35%;
    display: none;
    background: transparent url("../images/loading-big.gif");
    z-index: 1000;
    height: 31px;
    width: 31px;
}

#busy-holder
{
    background: transparent;
    width: 100%;
    height: 100%;        
}

8 个答案:

答案 0 :(得分:41)

使用position:fixed代替position:absolute

第一个是相对于您的屏幕窗口。 (不受滚动影响)

第二个是相对于页面。 (受滚动影响)

注意:IE6不支持position:fixed。

答案 1 :(得分:18)

.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);
}
<div class="loader"></div>

答案 2 :(得分:5)

这就是我为Angular 4所做的:

<style type="text/css">  
  .centered {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform: -webkit-translate(-50%, -50%);
    transform: -moz-translate(-50%, -50%);
    transform: -ms-translate(-50%, -50%);
    color:darkred;
  }
</style>

</head>

<body>
  <app-root>
        <div class="centered">
          <h1>Loading...</h1>
        </div>
  </app-root>
</body>

答案 3 :(得分:2)

将div busy的绝对位置改为fixed

答案 4 :(得分:1)

以角度4为我工作

添加style="margin:0 auto;"

<mat-progress-spinner
  style="margin:0 auto;"
  *ngIf="isLoading"
  mode="indeterminate">
  </mat-progress-spinner>

答案 5 :(得分:0)

您可以使用此OnLoad或在从数据库获取信息的过程中使用

在HTML中添加以下代码:

<div id="divLoading">
<p id="loading">
    <img src="~/images/spinner.gif">
</p>

在CSS中添加以下代码:

#divLoading {
  margin: 0px;
  display: none;
  padding: 0px;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  z-index: 30001;
  opacity: 0.8;}

#loading {
   position: absolute;
   color: White;
  top: 50%;
  left: 45%;}

如果要显示和隐藏JS:

  document.getElementById('divLoading').style.display = 'none'; //Not Visible
  document.getElementById('divLoading').style.display = 'block';//Visible

答案 6 :(得分:0)

这是一种使用覆盖层的解决方案,该覆盖层与材质设计微调器一起使用,您可以在应用程序中配置一次,并且可以在任何地方调用它。

app.component.html

(将其放在html根目录下的某个位置)

<div class="overlay" [style.height.px]="height" [style.width.px]="width" *ngIf="message.plzWait$ | async">
        <mat-spinner class="plzWait"  mode="indeterminate"></mat-spinner>
</div>

app.component.css

.plzWait{
  position: relative;
  left: calc(50% - 50px);
  top:50%;

}
.overlay{
  position: absolute;
  top:0px;
  left:0px;
  width: 100%;
  height: 100%;
  background: black;
  opacity: .5;
  z-index: 999999;
}

app.component.ts

height = 0;
width = 0;
constructor(
    private message: MessagingService
  }
ngOnInit() {
    this.height = document.body.clientHeight;
    this.width = document.body.clientWidth;
  }

messaging.service.ts

import { Injectable } from '@angular/core';
import { Subject } from 'rxjs';

@Injectable({
    providedIn: 'root',
  })
export class MessagingService {
    // Observable string sources
  private plzWaitObservable = new Subject<boolean>();


  // Public Observables you subscribe to
  public plzWait$ = this.plzWaitObservable.asObservable();

  public plzWait = (wait: boolean) => this.plzWaitObservable.next(wait);
}

其他一些组成部分

constructor(private message: MessagingService) { }
somefunction() {
    this.message.plzWait(true);
    setTimeout(() => {
            this.message.plzWait(false);
    }, 5000);
}

答案 7 :(得分:0)

transform: translate(50%, 50%);

你可以试试这个,在我的情况下它会起作用

<div class="position-relative">
<div class="position-absolute" style="transform: translate(50%, 50%)"> loader or anything Else</div>
</div>