출처 : https://studiomeal.com/archives/177
@keyframes spin {
100% {
transform: rotate(360deg);
}
}
.spinner {
display: inline-block;
width: 50px;
height: 50px;
border: 5px solid yellow;
border-color: yellow transparent transparent;
border-radius: 50%;
animation: spin 1s linear infinite;
}
<div class="spinner"></div>
이렇게 쉽게 할 수가 있구나.... 역시 많이 배우고 해야 한다.
'Web Progreming > HTML' 카테고리의 다른 글
[CSS] Pseudo-Class Selectors Level 4 - :is, :where (0) | 2021.07.06 |
---|---|
HTTP 응답 상태 코드 - 2 (0) | 2019.11.11 |
HTTP 응답 상태 코드 - 1 (0) | 2019.11.08 |