我有一個圈子加載器和一個文本里面。我怎樣才能保持這個文本內的圓靜態?因爲它隨着圓圈而移動。我簡單的代碼是:如何保持裝載器的文本不變?
<div class="loader">
<div class="stop">
STOP
</div>
</div>
而CSS:
.loader {
border-radius: 50%;
border-top: 8px solid red;
border-bottom: 8px solid red;
border-right:8px solid red;
border-left:8px solid white;
width: 120px;
height: 120px;
animation: spin 4s linear infinite;
margin:220px;
}
.stop{
position: absolute;
top: 45%;
left: 40px;
width: 100%;
font-size:20px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
任何想法的傢伙!! ??
您正在旋轉整個div,因此div的內容也會旋轉。 – Rehan