Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 재귀함수 예제
- 재귀 예제
- 해외증권 양도세 한국투자증권
- js 자동완성
- 홈택스 해외주식 양도세
- katalon 사용법
- 한국투자증권 해외주식 양도세
- 피보나치함수 예제
- katalon 비교
- CSTS 폭포수 모델
- recursion example
- katalon 자동화
- 해외주식 양도세 신고
- 주식 양도세 신고방법
- java.sql.SQLSyntaxErrorException
- oracle group by
- git 연동
- Katalon Recorder 사용법
- 한국투자증권 양도세 신고
- 최대공약수 예제
- 피보나치함수
- tomcat log
- 피보나치 예제
- 국세청 해외주식 양도세 신고방식
- bfs 미로탐색 java
- 테스트 자동화
- katalon xpath
- katalon
- javascript 자동완성
- 톰캣 실시간 로그
Archives
- Today
- Total
엄지월드
로딩바 만들기 본문
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<style>
#loading {
width: 100vw;
height: 40vw;
top: 0;
left: 0;
position: fixed;
display: block;
opacity: 0.7;
background-color: #fff;
z-index: 99;
text-align: center;
}
#loading-image {
position: absolute;
z-index: 100;
width:80vw;
height: 40vw;
margin-left:-40vw;
}
</style>
<style>
#loading {
height: 150vw;
}
#loading-image{
margin-top: 60pt;
height: 200pt;
width: 400pt;
}
</style>
<script type="text/javascript">
window.onbeforeunload = function () { $('#loading').show(); } //현재 페이지에서 다른 페이지로 넘어갈 때 표시
$(window).load(function () { //페이지가 로드 되면 로딩 화면을 없애줌
$('#loading').hide();
});
</script>
'Front' 카테고리의 다른 글
CSS 버튼 색 추가 (0) | 2022.11.24 |
---|---|
An invalid form control with name='contents' is not focusable. (0) | 2022.08.23 |
table tr 제거 (0) | 2022.07.27 |
핵심 HTML (0) | 2022.05.02 |
자바스크립트 차트 라이브러리 (0) | 2020.02.23 |
Comments