반응형
HTML
CSS
/* 프로그래스 바 CSS */
.Progress_Bar {width: 100%;height: 100%;top: 0px;left: 0px;position: fixed;display: block;opacity: 0.7;background-color: #fff;z-index: 99;text-align: center;}
.Progress_Bar_Image {position: absolute;top: 50%;left: 50%;z-index: 100;}
JS
$(window).load(function(){
$("#Progress_Bar").hide();
});
$("#Progress_Bar").hide(); 중요.
※Progress_Bar를 버튼 혹은 function에서 Show 시켜주고 마지막에 hide 시켜주면 됨 .
'IT > 퍼블리싱 (html+css)' 카테고리의 다른 글
[HTML] Table 첫행고정 , th 고정 (feat. SlimScrollBar.js) (0) | 2021.05.13 |
---|---|
[HTML]Textarea 영역 크기 조절 없애기 (0) | 2021.03.02 |
[CSS]margin , padding 고정 값 (0) | 2021.01.22 |
[CSS] Background-color 투명 or 배경 없애기 (0) | 2021.01.19 |
[HTML]input 박스에 X 버튼 삽입 (0) | 2019.08.22 |