$(window).on('mousewheel', function(e){
	if(e.originalEvent.wheelDelta < 0) {
		//scroll down
		$('html, body').stop().animate({
			scrollTop : '+=250px'
		},500);
	}else {
		//scroll up
		$('html, body').stop().animate({
			scrollTop : '-=250px'
		},500);
	}

	//prevent page fom scrolling
	return false;
});

'PROGRAM > JQUERY' 카테고리의 다른 글

hasClass if else문  (0) 2014.09.17
제이쿼리 중첩사용  (0) 2014.09.17
여러줄 말 줄임 플러그인  (0) 2014.09.16
parallax scrolling  (0) 2014.09.16
일정 간격 내려가면 css 변경 퀵메뉴  (0) 2014.07.30