[HTML/CSS] 사진 로딩 애니메이션 사용하기
블루레이나, 고화질의 이미지를 로딩할 때, 자연스럽게 연출해보세요 0% const loadText = document.querySelector(".loading-text"); const bg = document.querySelector(".bg"); let load = 0; let int = setInterval(blurring, 30); function blurring() { load++; if (load > 99) { clearInterval(int); } loadText.innerText = `${load}%`; loadText.style.opacity = scale(load, 0, 100, 1, 0); bg.style.filter = `blur(${scale(load, 0, 100, 30, 0)}..
2022. 8. 11.