페이지 로딩중 (스크립트) 만들기 - 이미지 없이 css, jquery, javascript 만으로 로딩중 객체 + 스크롤 락 스크립트 script // jQuery 불러오기 html css /* loading */ .loading { position:fixed; width:100%; height:100%; left:0; top:0; background:rgba(0,0,0,0.6); z-index:100; } .loading__image { position:absolute; left:50%; top:50%;margin-left:-40px;margin-top:-40px;border: 12px solid #f3f3f3; /* Light grey */ border-top: 12px solid #8a8a8a; ..