사용자함수 화면 스크롤 시 배경화면 투명도 변환하기
페이지 정보
작성자 너갱이 작성일 15-05-28 17:03 조회 10,542 댓글 0본문
$(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});
}
});
});
관련링크
- http://www.bamtol.net/sample/js/scrollBG.html 1082회 연결
- https://pixlr.com/ 1165회 연결
댓글목록 0
등록된 댓글이 없습니다.
