반응형
loading 심기
<!-- 로딩 태그인 div는 body 제일 첫 부분에 선언되어야함 --> <div id="loading" style="display:block; width: 100%; height: 100%; position: fixed; left: 0; top: 0; z-index: 99999999; background-position: center center; background-repeat: no-repeat; background-image: url('loading.gif')"></div> $(document).ready(function() { $("#loading").hide(); // hide는 jquery에서 제공함 }); |
반응형
'Frontend > jQuery' 카테고리의 다른 글
스마트 에디터 로드 후 내용 변경 감지 이벤트 (1) | 2019.12.03 |
---|---|
ajax 반복하기 (0) | 2019.11.27 |
Radio 클릭 후 취소하고 싶을 때 (0) | 2019.11.15 |
첨부파일 확장자 및 용량체크 (0) | 2019.11.06 |
checkbox의 전체 갯수와 선택된 갯수 구하기 (0) | 2019.10.18 |