일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스카이 안드로이드폰 시리우스 K양 동영상
- 하루 한마디 영어
- 안드로이드 개발 2.0 강좌
- objective-c
- 하루한마디영어
- 안드로이드 개발 강좌
- 안드로이드 2.0 개발
- 스마트폰 배경화면
- 구글안드로이드
- 안드로이드 개발
- 안드로이드개발
- android
- Form Stuff
- 안드로이드2.0개발
- 아이폰 바탕화면
- MapView
- 안드로이드 바탕화면
- 안드로이드폰
- sky 시리우스폰
- 영어
- 아이폰 배경화면
- 구글 안드로이드
- 구글 안드로이드 개발
- 스카이 안드로이드폰 시리우스
- 안드로이드
- 인기있는 블로그 만들기
- 안드로이드2.0
- 안드로이드 개발 2.0
- SKY 시리우스
- 안드로이드 배경화면
- Today
- Total
moozi
jQuery mouseWheel 이벤트 본문
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script
src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-mousewheel/3.1.13/jquery.mousewheel.min.js"></script>
<script>
$(function(){
$('body').mousewheel(function(event,delta){
if(delta>0){ // 마우스 휠을 올렸을때
console.log("up");
$("#box2").removeClass("up");
}else if(delta<0){//내렸을때
console.log("down");
$("#box2").addClass("up");
}
});
});
</script>
<style>
*{margin: 0;padding: 0;}
#box1{
width:100%;
height: 100%;
position: fixed;
background-color: red;
}
#box2{
width:100%;
height: 100%;
background-color: blue;
position: fixed;
top:100%;
transition:2s;
}
.up{
top:0% !important;
}
</style>
</head>
<body>
<div id="box1">box1</div>
<div id="box2">box2</div>
</body>
</html>
'TIS_2018 > 응용sw2018_1기' 카테고리의 다른 글
jQuery연습문제 (0) | 2018.04.10 |
---|---|
transition timing function (0) | 2018.04.10 |
Oracle Explain Plan (0) | 2018.04.09 |
4/6 gallery01.html (0) | 2018.04.06 |
jQuery연습문제01 (0) | 2018.04.06 |