메인메뉴 바로가기

HOME으로 가기


사용자함수 화면 스크롤 시 배경화면 투명도 변환하기

페이지 정보

profile_image
작성자 너갱이
댓글 0건 조회 10,456회 작성일 15-05-28 17:03

본문

$(window).ready(function(){

var max = 500; //100% 투명할때의 스크롤 값

$(window).scroll(function(){

var scrollPX = $(this).scrollTop();

if( scrollPX  < max ) {

$("#bg").css({"opacity": (max-scrollPX)/max });

}else{

$("#bg").css({"opacity": 0});

}

});

}); 

 

댓글목록

등록된 댓글이 없습니다.