본 글에서는 jQuery 마스크 레이어의 구현 방식을 예시를 통해 분석합니다. 참고하실 수 있도록 모든 사람과 공유하세요. 자세한 내용은 다음과 같습니다.
1 배경 반투명 마스크 레이어 스타일
검은색(또는 기타) 배경이 필요하며 절대 위치 지정으로 설정되어야 합니다. 다음은 프로젝트에 사용되는 CSS 스타일입니다.
/* 半透明的遮罩层 */ #overlay { background: #000; filter: alpha(opacity=50); /* IE的透明度 */ opacity: 0.5; /* 透明度 */ display: none; position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; z-index: 100; /* 此处的图层要大于页面 */ display:none; }
마스크 구현을 위한 2개의 jQuery
/* 显示遮罩层 */ function showOverlay() { $("#overlay").height(pageHeight()); $("#overlay").width(pageWidth()); // fadeTo第一个参数为速度,第二个为透明度 // 多重方式控制透明度,保证兼容性,但也带来修改麻烦的问题 $("#overlay").fadeTo(200, 0.5); } /* 隐藏覆盖层 */ function hideOverlay() { $("#overlay").fadeOut(200); } /* 当前页面高度 */ function pageHeight() { return document.body.scrollHeight; } /* 当前页面宽度 */ function pageWidth() { return document.body.scrollWidth; }
3개의 프롬프트 상자
마스크의 목적은 콘텐츠 조작을 불가능하게 하고 프롬프트 상자를 강조 표시하는 것입니다. 위 내용을 참고하여 프롬프트 상자를 만들 수 있습니다. z-index는 마스크 레이어보다 높을 수 있습니다. 주요 질문은 프롬프트 상자가 브라우저 중앙에 오도록 제어하는 방법입니다.
/* 定位到页面中心 */ function adjust(id) { var w = $(id).width(); var h = $(id).height(); var t = scrollY() + (windowHeight()/2) - (h/2); if(t < 0) t = 0; var l = scrollX() + (windowWidth()/2) - (w/2); if(l < 0) l = 0; $(id).css({left: l+'px', top: t+'px'}); } //浏览器视口的高度 function windowHeight() { var de = document.documentElement; return self.innerHeight || (de && de.clientHeight) || document.body.clientHeight; } //浏览器视口的宽度 function windowWidth() { var de = document.documentElement; return self.innerWidth || (de && de.clientWidth) || document.body.clientWidth } /* 浏览器垂直滚动位置 */ function scrollY() { var de = document.documentElement; return self.pageYOffset || (de && de.scrollTop) || document.body.scrollTop; } /* 浏览器水平滚动位置 */ function scrollX() { var de = document.documentElement; return self.pageXOffset || (de && de.scrollLeft) || document.body.scrollLeft; }
보충:
jQuery 단순 마스크 레이어 플러그인:
jQuery 코드:
(function ($) { $.fn.ShowMask = function (options) { var defaults = { top: 150, left: 200 } var options = $.extend(defaults, options); $("html").append('<div id="ui-mask"></div><div id="ui-mask-div" style="z-index: 99999;position: fixed;top:' + options.top + 'px;left:' + options.left + 'px;"><img src="Images/ui-loading.gif" alt="" /><span>操作正在进行中,请耐心等待......</span></div>') _this_ = $("#ui-mask"); _this_.height($(document).height()) _this_.show(); }; $.fn.HideMask = function (options) { _this_ = $("#ui-mask"); _this_.remove(); }; })(jQuery);
CSS 스타일:
#ui-mask { background-color: #666; position: absolute; z-index: 9999; left: 0; top: 0; display: none; width: 100%; height: 100%; opacity: 0.5; filter: alpha(opacity=50); -moz-opacity: 0.5; } #ui-mask-div img { width: 50px; height: 50px; float: left; } #ui-mask-div span { height: 50px; line-height: 50px; display: block; float: left; color: Red; font-weight: bold; margin-left: 5px; }
사용방법:
function btn_save() { $(this).ShowMask(); $.post('url',null,function(d,s){ $(this).HideMask(); }); }
이 기사가 jQuery 프로그래밍에 종사하는 모든 사람에게 도움이 되기를 바랍니다.