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

본문
$(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
1056회 연결 -
https://pixlr.com/
1142회 연결
- 이전글시작홈페이지, 즐겨찾기 만들기 15.10.13
- 다음글OrientationChange; - 모바일 회전변경 이벤트 15.05.15
댓글목록
등록된 댓글이 없습니다.

