loadingbar
라이브러리 없이 만드는 간단한 로딩바(loadingbar)
흰색 부분이 회전하는 간단한 로딩바를 html, css, js만 가지고 라이브러리 없이 만들어 보자. html body 태그 안에 원하는 곳에 넣어 준다. css #loading { position: fixed; top: 50%; left: 50%; display: none; width: 50px; height: 50px; border: 3px solid rgba(255, 255, 255, 0.3); border-radius: 50%; border-top-color: #fff; animation: spin 1s ease-in-out infinite; -webkit-animation: spin 1s ease-in-out infinite; z-index: 9999; } 원하는 크기 및 속도, 색상 등 수정 ..