在HTML5页面的中心显示Spinner?

时间:2014-04-20 16:20:53

标签: html5 css3 spinner uiactivityindicatorview

您正在尝试创建一个简单的空白html页面,其中包含一个微调器。例如,在该图像中。

enter image description here

1 个答案:

答案 0 :(得分:9)

在线查找微调器gif - http://www.ajaxload.info或自己创建一个。然后使用以下代码将其置于页面中心:

.spinner{ position: absolute; height: 100px; width: 100px; top: 50%; left: 50%; margin-left: -50px; margin-top: -50px; background: url(/link/to/your/image); background-size: 100%; }