我有一个 html 页面,在每个页面重新加载时我想显示一个后台加载器图标。我使用了引导微调图标,但无法将其添加到页面中心。
<html>
<style>
.overlay {
background-color:#EFEFEF;
position: fixed;
width: 100%;
height: 100%;
z-index: 1000;
top: 0px;
left: 0px;
opacity: .5;
filter: alpha(opacity=50);
display: none;
}
</style>
<body>
<div class="overlay">
<div class="d-flex justify-content-center">
<div class="spinner-grow text-primary" role="status" style="width: 3rem; height: 3rem; z-index: 20;">
<span class="sr-only">Loading...</span>
</div>
</div>
</div>
<!-- here goes the main content -->
<!-- here goes the main content -->
</body>
</html>
翻过高山走不出你
www说
偶然的你
FFIVE
相关分类