Вы имеете в виду полный загрузчик страниц, как это
<div class="loader">
<div class="spinner"></div>
</div>
`
.loader {
position: fixed;
top:0;
left:0;
right:0;
bottom:0;
background-color:rgba(255,255,255,0.5);
}
.spinner {
width:60px;
height:60px;
border-radius: 60px;
border: 10px solid teal;
position: fixed;
left: calc( 50% - 30px);
top: calc( 50% - 30px);
animation-name: spin;
animation-duration: 1s;
border-left-color: transparent;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}