제이쿼리 조건문 질문입니다
본문
if (어떠한 조건이 참일경우){
$('.fixed_top').fadeOut(); $('.fixed_bottom').fadeOut();
} else {
$('.fixed_top').fadeIn(); $('.fixed_bottom').fadeIn();
}
이런식으로 들어가있는데요
아래처럼 하고싶은데 어떻게 해야 할까요?
if(fixed_top , fixed_bottom 두 요소가 fadeOut일경우){
...처리 생략
}
답변 1
http://api.jquery.com/fadeout/
여기에 상세히 잘 나옵니다.
덧붙이자면
$(".fixed_top").fadeOut("option", function() {
// 임시로 체크할 값처리
});
하고난뒤
if ( fixed_top fadeOut체크값 확인 && .....) {
}
으로 하시면 될거 같은데요
답변을 작성하시기 전에 로그인 해주세요.