「テンプレート:Loading/style.css」の版間の差分
ナビゲーションに移動
検索に移動
編集の要約なし |
編集の要約なし |
||
6行目: | 6行目: | ||
border-top: 15px solid blue; | border-top: 15px solid blue; | ||
border-radius: 50%; | border-radius: 50%; | ||
width: | width: 100px; | ||
height: | height: 100px; | ||
animation: spin 1s linear infinite; | animation: spin 1s linear infinite; | ||
} | } |
2年3月30日 (ヰ) 20:39時点における版
.loading {
position: relative;
top: 50%;
left: 50%;
border: 15px solid #ffffff;
border-top: 15px solid blue;
border-radius: 50%;
width: 100px;
height: 100px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(60deg);
}
50% {
transform: rotate(180deg);
}
75% {
transform: rotate(300deg);
}
100% {
transform: rotate(360deg);
}
}