클린 로딩 애니메이션
이제 코드를 살펴보겠습니다.
HTML
<div class="loading_container">
<div class="loading"></div>
<h3>loading...</h3>
</div>
클래스
div
가 있는 메인loading_container
이 있고 두 개의 자식loading
과 h3
가 있습니다.loading
- 이 애니메이션의 메인 로더입니다. h3
: 미리보기에서 볼 수 있는 텍스트입니다 CSS
/* Outer Loading Container */
.loading_container {
position: relative;
width: 200px;
height: 200px;
border-radius: 150px;
}
/* Loader */
.loading {
width: 100%;
height: 100%;
border-radius: 150px;
border-right: 0.3rem solid white;
animation: animate 2s linear infinite;
}
/* Animation */
@keyframes animate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
/* loading text */
.loading_container > h3 {
color: #fff;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
결론
따라서 그 후에는 프로젝트의 어느 곳에서나 사용할 수 있습니다. 그리고 그것에 대해 어떻게 생각하는지 알려주세요. 당신이 그것을 좋아한다면 다음을 고려하십시오.
또한 읽기
Reference
이 문제에 관하여(클린 로딩 애니메이션), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/j471n/clean-loading-animation-4cl9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)