'Web/Favorite script'에 해당되는 글 1건

스크롤 영역 채워주는 모달 팝업

2014. 5. 23. 14:49 Web/Favorite script


Html 
<div class="mask"></div>

Js
 var maskHeight = jQuery(document).height();  
 var maskWidth = jQuery(window).width(); 
 jQuery('.mask').css({'width':maskWidth,'height':maskHeight+"px"});
 jQuery(".mask").show();

Css
.mask {position:absolute; top:0; width:100%; height:100%; background:#000; opacity:0.5; z-index:888;}

Copyright © HuckleberryM All Rights Reserved | JB All In One Designed by CMSFactory.NET