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 | 31 |
Tags
- push오류
- Math.round()
- 파일질라설치오류
- hide
- FileZilla설치
- slideUp
- 주석이 먹히지 않을 때
- is_check
- Parent
- 증가값
- Excel
- 1521
- calc.plus
- selectoptions
- index %
- excel중복체크
- calc.minus
- FileZilla다운로드
- 파일질라설치
- Math.floor()
- 파일질라다운로드
- Math.ceil()
- toFixed()
- selectedIndex
- addClass
- Git
- 소스트리인증실패
- ctrl+/
- SUB함수
- removeClass
Archives
- Today
- Total
잡동사니에도 사랑을
[21.10.13] exam12(02_jQueryEvent) 본문
728x90
반응형
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<link rel="stylesheet" href="../css/scroll.css">
</head>
<body>
<div class="gradientStyle">
<h1>스크롤 이벤트</h1>
<div id="console">없지롱~~</div>
</div>
<script type="text/javascript" src="http://code.jquery.com/jquery-3.6.0.min.js"></script>
<script type="text/javascript">
$(function(){
$(window).scroll(function(){
$("#console").html("스크롤이 이동되었습니다.");
setTimout(function(){
$("#console").html(""); //3초 뒤에 #console 초기화
}, 3000);
});
});
</script>
</body>
</html>
@charset "UTF-8";
* {
padding: 0;
margin: 0;
}
div {
height: 1000px;
}
.gradientStyle {
/* IE */
background-image: -ms-linear-gradient(top, #1E5799 0%, #FFFFFF 100%);
/* Chrome */
background-image: -webkit-linear-gradient(top, #1E5799 0%, #FFFFFF 100%);
}
#console {
position: fixed;
width: 300px;
height: 50px;
line-height: 50px;
text-align: center;
left: 50%;
margin-left: -150px;
top: 50%;
margin-top: -25px;
color: red;
font-size: 20px;
font-weight: bold;
}
728x90
반응형
'JAVA_EE > JQuery' 카테고리의 다른 글
[21.10.14] exam01(03_jQueryAttr) - attr과 prop의 차이 (0) | 2021.10.14 |
---|---|
[21.10.13] exam13(02_jQueryEvent) (0) | 2021.10.14 |
[21.10.13] exam11(02_jQueryEvent) (0) | 2021.10.14 |
[21.10.13] exam10(02_jQueryEvent) (0) | 2021.10.14 |
[21.10.13] exam08(02_jQueryEvent) (0) | 2021.10.14 |