例如,我有一個高度很高的網頁,它有一個通常在滾動時起牀的加載程序。但是,我希望那個裝載機始終保持在中心位置,儘管滾動位置。我怎樣才能做到這一點?如何修復可滾動頁面中心的元素?
HTML
<div class="loader"></div>
CSS
body {
height: 1000vh;
margin: 0;
}
.loader:before,
.loader:after,
.loader {
border-radius: 50%;
width: 2.5em;
height: 2.5em;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation: load7 1.8s infinite ease-in-out;
animation: load7 1.8s infinite ease-in-out;
}
.loader {
font-size: 10px;
margin: 80px auto;
position: relative;
text-indent: -9999em;
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
transform: translateZ(0);
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
.loader:before {
left: -3.5em;
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.loader:after {
left: 3.5em;
}
.loader:before,
.loader:after {
content: '';
position: absolute;
top: 0;
}
@-webkit-keyframes load7 {
0%,
80%,
100% {
box-shadow: 0 2.5em 0 -1.3em #C74038;
}
40% {
box-shadow: 0 2.5em 0 0 #C74038;
}
}
@keyframes load7 {
0%,
80%,
100% {
box-shadow: 0 2.5em 0 -1.3em #C74038;
}
40% {
box-shadow: 0 2.5em 0 0 #C74038;
}
}
我確定它只是一個複製粘貼錯誤,但你仍然有'位置:相對',正在被'position:fixed'覆蓋。 – AtheistP3ace
是啊,你說得對,我忽略了「立場:親戚」,但它應該仍然有效,因爲後者的規則是優先的。雖然修正了它。 –
是的,它仍然適用於它! =] – AtheistP3ace