마우스 스크롤시 일정 이상 내려갔을 때 레이어의 style속성 변경 처리
$(function(){
$(window).scroll(
function(){
if($(window).scrollTop() <= 210)
{
document.getElementById("id명").style.position = "absolute";
document.getElementById("id명").style.top = "240px";
}else{
document.getElementById("id명").style.position = "fixed";
document.getElementById("id명").style.top = "150px";
}
});
}
);
'Development > Javascript, jQuery' 카테고리의 다른 글
페이지 로드후 호출 함수 (0) | 2017.07.11 |
---|---|
[jQuery] 탭버튼 활성화와 Div 활성화 (0) | 2017.06.19 |
[jQuery] Slick 예제 및 사용하기 (0) | 2017.06.13 |
[Jquery] selector 정리 (셀렉터) (0) | 2017.05.29 |
bxSlider 사용하기 (0) | 2017.05.23 |