쇼핑몰: 장바구니 옵션 선택사항 수정 시 마스크 레이어 제거

This commit is contained in:
whitedot
2013-06-12 09:40:03 +09:00
parent 00e8ced9b2
commit d744a1e1f7
3 changed files with 0 additions and 18 deletions

View File

@ -659,17 +659,3 @@ $(function(){
}
});
});
// 모달 레이어 http://mytory.net/archives/783 참조
function winMask(){ // 모달 레이어 배경
//화면의 높이와 너비를 구한다.
var maskHeight = $(document).height();
var maskWidth = $(window).width();
//마스크의 높이와 너비를 화면 것으로 만들어 전체 화면을 채운다.
$('#win_mask').css({'width':maskWidth,'height':maskHeight});
//애니메이션 효과
$('#win_mask').fadeTo("fast",0.8);
}
// 모달 레이어 끝