>웹 프론트엔드 >JS 튜토리얼 >jquery_jquery를 기반으로 한 모달 div 레이어 팝업 효과

jquery_jquery를 기반으로 한 모달 div 레이어 팝업 효과

WBOY
WBOY원래의
2016-05-16 18:21:051075검색

우여곡절 끝에 드디어 렌더링이 끝났습니다.
jquery_jquery를 기반으로 한 모달 div 레이어 팝업 효과
구체 구현:
(1) jquery.divbox.js 코드를 작성합니다.

코드 복사 코드는 다음과 같습니다.

jQuery.fn.extend(
{
OpenDiv : function()
{
var sWidth, sHeight;
sWidth = window.screen.availWidth;
if (window.screen.availHeight > document.body.scrollHeight)
{
sHeight = window.screen .availHeight;
} else
{
sHeight = document.body.scrollHeight 20;
}
var MaskObj = document.createElement("div");
maskObj.setAttribute( 'id', 'BigDiv');
maskObj.style.position = "absolute";
maskObj.style.top = "0"
maskObj.style.left = "0";
maskObj.style.Background = "#111";
maskObj.style.filter = "알파(불투명도=70);"
maskObj.style.opacity = "0.7" ;
maskObj.style .width = sWidth "px";
maskObj.style.height = sHeight "px";
maskObj.style.zIndex = "10000"; ).attr("scroll" , "no");
document.body.appendChild(maskObj)
$("#BigDiv").data("divbox_selectlist", $("select:visible") );
$( "select:visible").hide();
$("#BigDiv").attr("divbox_scrolltop", $.ScrollPosition().Top)
$(" #BigDiv").attr( "divbox_scrollleft", $.ScrollPosition().Left);
$("#BigDiv").attr("htmloverflow", $("html").css("overflow") );
$( "html").css("overflow", "hidden")
window.scrollTo($("#BigDiv").attr("divbox_scrollleft"), $("#BigDiv ").attr("divbox_scrolltop "));
var MyDiv_w = this.width();
var MyDiv_h = this.height();
MyDiv_w =parseInt(MyDiv_w);
MyDiv_h = parsInt(MyDiv_h);
var width = $.PageSize().Width;
var height = $.PageSize().Height;
var left = $.ScrollPosition().Left; var top = $.ScrollPosition( ).Top;
var Div_topposition = 상단(높이/2) - (MyDiv_h/2)
var Div_leftposition = 왼쪽(너비/2) - (MyDiv_w/2); 🎜>this.css(" 위치", "절대");
this.css("z-index", "10001")
this.css("배경", "#fff");
this.css( "left", Div_leftposition "px");
this.css("top", Div_topposition "px")
if ($.browser.mozilla)
{
this.show() ;
return;
}
this.fadeIn("fast")
}
, CloseDiv: function()
{
if ($.browser.mozilla)
{
this.hide();
} else
{
this.fadeOut("fast")
} $("html" ).css("overflow" , $("#BigDiv").attr("htmloverflow"));
window.scrollTo($("#BigDiv").attr("divbox_scrollleft"), $("# BigDiv").attr(" divbox_scrolltop"));
$("#BigDiv").data("divbox_selectlist").show();
$("#BigDiv").remove();
}
} )
$.extend(
{
PageSize:function ()
{
var width=0;
var height=0;
width=window.innerWidth!=null?window.innerWidth:document.documentElement&&document.documentElement.clientWidth?document.documentElement.clientWidth:document.body!=null?document.body.clientWidth:null; innerHeight!=null?window.innerHeight:document.documentElement&&document.documentElement.clientHeight?document.documentElement.clientHeight:document.body!=null?document.body.clientHeight:null>return {Width:width,Height:height; };
}
,ScrollPosition:function ()
{
var top=0,left=0
if($.browser.mozilla)
{
top =window.pageYOffset;
left=window.pageXOffset;
}
else if($.browser.msie)
{
top=document.documentElement.scrollTop; document.documentElement.scrollLeft;
}
else if(document.body)
{
top=document.body.scrollTop;
left=document.body.scrollLeft;
return {Top: top,Left:left};
}
})


(2) 웹페이지 jquery.divbox에서 두 개의 js를 참조해야 합니다. .js 및 jquery.js

(3) 테스트 페이지 코드:



코드 복사


코드는 다음과 같습니다. :


<머리>
测试



<스타일>
#divSCA
{
위치: 절대;
너비: 700px;
높이: 500px;
글꼴 크기: 12px;
배경: #fff;
테두리: 0px 솔리드 #000;
z-색인: 10001;
디스플레이: 없음;
}



<본문>

这是模态DIV,点击关闭



测试能否覆盖 선택




(4) 测试代码及源文件下载地址:

点击下载
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.