兼容主流浏览器的jQuery+CSS 实现遮罩层的简单代码

在页面点击"注册",出现一层有不透明度的黑色遮罩;遮罩层的上方是注册框;此时无法点击页面上除注册框外的其他元素;点击注册框上的"随便逛逛",遮罩层消失。

预览地址:

要点:

1.注册框始终水平、垂直居中,包括鼠标滚轮上下滚动页面、缩放页面和调整浏览器窗口大小时

主要由CSS控制,注册框的宽度和高度都已经确定( 620*420px ),首先使用position:fixed来使它相对于浏览器窗口绝对定位;然后使它垂直居中:top:50%; left:50%; margin:-210px 0 0 -310px;

2.当缩放页面和调整浏览器窗口大小时,遮罩层需始终覆盖整个文档和充满整个浏览器可视窗口以及需要滚动才能浏览到的部分,需要兼容Chrome和IE等不同内核浏览器;

两个重要的属性:js的window.screen.availHeight和jQuery的$(document.body).outerHeight(true)。window.screen.availHeight指屏幕可用工作区域的高,$(document.body).outerHeight(true)指浏览器当前窗口文档body的总宽度 包括border padding margin。window.screen.availHeight主要用于IE(11)缩放页面后,遮罩层仍能充满浏览器窗口。

3.遮罩层出现时,页面仍可以上下滚动,但是无法操作页面中除登陆框外的其他元素

代码:

HTML( 需测试足够高的文档 ):

代码如下:
>

<div class="content">
<div id="usertie">

<a id="register" href="#" onclick="return false;">注册

The Suicide. Meanwhile Monte Cristo had also returned to town with Emmanuel and Maximilian. Their return was cheerful. Emmanuel did not conceal his joy at the peaceful termination of the affair,and was loud in his expressions of delight. Morrel,in a corner of the carriage,allowed his brother-in-law's gayety to expend itself in words,while he felt equal inward joy,which,however,betrayed itself only in his countenance. At the Barriere du Trone they met Bertuccio,who was waiting there,motionless as a sentinel at his post. Monte Cristo put his head out of the window,exchanged a few words with him in a low tone,and the steward disappeared. "Count," said Emmanuel,when they were at the end of the Place Royale,"put me down at my door,that my wife may not have a single moment of needless anxiety on my account or yours." "If it were not ridiculous to make a display of our triumph,I would invite the count to our house; besides that,he doubtless has some trembling heart to comfort. So we will take leave of our friend,and let him hasten home." "Stop a moment," said Monte Cristo; "do not let me lose both my companions. Return,Emmanuel,to your charming wife,and present my best compliments to her; and do you,Morrel,accompany me to the Champs Elysees." "Willingly," said Maximilian; "particularly as I have business in that quarter." "Shall we wait breakfast for you?" asked Emmanuel. "No," replied the young man. The door was closed,and the carriage proceeded. "See what good fortune I brought you!" said Morrel,when he was alone with the count. "Have you not thought so?" "Yes," said Monte Cristo; "for that reason I wished to keep you near me." "It is miraculous!" continued Morrel,answering his own thoughts. "What?" said Monte Cristo. "What has just happened." "Yes," said the Count,"you are right -- it is miraculous." "For Albert is brave," resumed Morrel. "Very brave," said Monte Cristo; "I have seen him sleep with a sword suspended over his head."

"She is going to leave her house," said the steward. "And her son?" "Florentin,his valet,thinks he is going to do the same." "Come this way." Monte Cristo took Bertuccio into his study,wrote the letter we have seen,and gave it to the steward. "Go," said he quickly. "But first,let Haidee be informed that I have returned." "Here I am," said the young girl,who at the sound of the carriage had run down-stairs and whose face was radiant with joy at seeing the count return safely. Bertuccio left. Every transport of a daughter finding a father,all the delight of a mistress seeing an adored lover,were felt by Haidee during the first moments of this meeting,which she had so eagerly expected. Doubtless,although less evident,Monte Cristo's joy was not less intense. Joy to hearts which have suffered long is like the dew on the ground after a long drought; both the heart and the ground absorb that beneficent moisture falling on them,and nothing is outwardly apparent. Monte Cristo was beginning to think,what he had not for a long time dared to believe,that there were two Mercedes in the world,and he might yet be happy. His eye,elate with happiness,was reading eagerly the tearful gaze of Haidee,when suddenly the door opened. The count knit his brow. "M. de Morcerf!" said Baptistin,as if that name sufficed for his excuse. In fact,the count's face brightened. "Which," asked he,"the viscount or the count?" "The count." "Oh," exclaimed Haidee,"is it not yet over?" "I know not if it is finished,my beloved child," said Monte Cristo,taking the young girl's hands; "but I do know you have nothing more to fear." "But it is the wretched" -- "That man cannot injure me,Haidee," said Monte Cristo; "it was his son alone that there was cause to fear." "And what I have suffered,"you shall never know,my lord." Monte Cristo smiled. "By my father's tomb," said he,extending his hand over the head of the young girl,"I swear to you,that if any misfortune happens,it will not be to me." The door was wide open,a hackney-coach was standing in the middle of the yard -- a strange sight before so noble a mansion; the count looked at it with terror,but without daring to inquire its meaning,he rushed towards his apartment. Two persons were coming down the stairs; he had only time to creep into an alcove to avoid them. It was Mercedes leaning on her son's arm and leaving the house. They passed close by the unhappy being,who,concealed behind the damask curtain,almost felt Mercedes dress brush past him,and his son's warm breath,pronouncing these words,-- "Courage,mother! Come,this is no longer our home!" The words died away,the steps were lost in the distance. The general drew himself up,clinging to the curtain; he uttered the most dreadful sob which ever escaped from the bosom of a father abandoned at the same time by his wife and son. He soon heard the clatter of the iron step of the hackney-coach,then the coachman's voice,and then the rolling of the heavy vehicle shook the windows. He darted to his bedroom to see once more all he had loved in the world; but the hackney-coach drove on and the head of neither Mercedes nor her son appeared at the window to take a last look at the house or the deserted father and husband. And at the very moment when the wheels of that coach crossed the gateway a report was heard,and a thick smoke escaped through one of the panes of the window,which was broken by the explosion. The door was wide open,which was broken by the explosion.

HTML

CSS:

代码如下:

width:620px; height:420px; position:fixed; top:50%; left:50%; margin:-210px 0 0 -310px; border-radius:8px; /*圆角*/ background-color:#999; z-index:3; display:none; }

.go{

position:absolute; right: 10px; top: 10px; padding: 5px 12px; background: rgba(0,.4); box-shadow: 0 0 0 2px rgba(255,255,.4); color: #fff; border-radius: 26px; }

#mask{

background-color:#000; position:absolute; top:0; left:0; display:none; z-index:2; }

#register{ z-index:1; color:blue;} .content{ width:800px; height:auto; margin:0 auto;}

JS:

代码如下:
//点击注册
$("#register").click(function(){

if(window.screen.availHeight > $(document.body).outerHeight(true)){

//当屏幕可用工作区域的高度 > 浏览器当前窗口文档body的总高度 包括border padding margin时( 缩放时 )
$("#mask").show().css({"opacity":"0.5","width":"100%","height":window.screen.availHeight});
}else{

$("#mask").show().css({"opacity":"0.5","height":$(document.body).outerHeight(true)});
}
$("#rbox").show();
});

//根据浏览器可视窗口的变化调整遮罩的宽度和高度,使遮罩充满浏览器 $(window).resize(function(){

//根据浏览器窗口变化改变遮罩宽度和高度,使遮罩充满整个浏览器 if($("#mask").css("width")!=0){

$("#mask").css("width","100%"); //必要时可对宽度也作出判断

if(window.screen.availHeight > $(document.body).outerHeight(true)){

$("#mask").css({"opacity":"0.5","height":window.screen.availHeight});
}else{

$("#mask").css({"opacity":"0.5","height":$(document.body).outerHeight(true)});
}
}
});

$(".go").click(function(){

$("#mask").hide();
$("#rbox").hide();
});
});

至此功能完成。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


1.第一步 设置响应头 header(&#39;Access-Control-Allow-Origin:*&#39;); //支持全域名访问,不安全,部署后需要固定限制为客户端网址 header(&#39;Access-Control-Allow-Methods:POST,GET,OPTIONS,D
$.inArray()方法介绍 $.inArray()函数用于在数组中搜索指定的值,并返回其索引值。如果数组中不存在该值,则返回-1; $.inArray(value,array) --value是要查找的值,array是被查找的数组。 有如下实例: &lt;!DOCTYPE html&gt; &l
jquery.serializejson.min.js的妙用 关于这个jquery.serializejson.min.js插件来看,他是转json的一个非常简单好用的插件。 前端在处理含有大量数据提交的表单时,除了使用Form直接提交刷新页面之外,经常碰到的需求是收集表单信息成数据对象,Ajax提
JS 将form表单数据快速转化为object对象(json对象) jaymou 于 2020-03-03 11:11:05 发布 3534 收藏 3 分类专栏: 前端 文章标签: javascript jquery 版权 前端 专栏收录该内容 5 篇文章0 订阅 订阅专栏 直接上代码 /** *
jQuery的区别:$().click()和$(document).on(&#39;click&#39;,&#39;要选择的元素&#39;,function(){})的不同 文章地址:https://www.cnblogs.com/sqh17/p/7746418.html 解决:动态创建的元素的事件
jQuery插件之jquery.spinner数字智能增减插件 参考地址:http://www.helloweba.com/view-blog-282.html 左右加减数字 像京东提交订单时目前使用的是左右加减数字的效果,这个效果直接明了,操作简单。我们使用jquery.spinner.js插件实
layui标签或一般标签均可&lt;div class=&quot;layui-form-item&quot;&gt; &lt;label class=&quot;layui-form-label&quot;&gt;异地仓名称&lt;/label&gt; &lt;div class=&quot;la
网上对于select option 动态添加修改如下, $(&quot;#selectId&quot;).append(&quot;&lt;option value=&#39;&quot;+value+&quot;&#39;&gt;&quot;+text+&quot;&lt;/option&gt;&
jQuery中的 $.extend() 和 $.fn.extend() ANGWH 于 2020-05-24 06:39:59 发布 注意:$.extend是为jQuery类添加添加类方法,用$.调用(类似$.ajax),$.fn.extend则是为jQuery对象添加方法(实例方法),用DOM元素
jquery 循环数组输出显示在html页面 jquery 没有双向数据绑定,但是很多需求确实需要我们从后台接收到数组或者对象循环显示在前台页面上,这时我们可以用字符串拼接,元素添加的方法去实现 js部分如下: 复制代码 $(function(){ var a=[&quot;1aa&quot;,&q
javascript事件委托理解,jQuery .on()方法一步到位实现事件委托 Javascript-概念原理 专栏收录该内容 10 篇文章0 订阅 订阅专栏 本篇文章借鉴自:博客园文章,只为自己巩固下事件委托方面的知识 概述: 什么叫事件委托?他还有一个名字叫做事件代理,(时间代理 事件委托,
JQuery-$.when().done().fail()的使用 原文引用于&#160;Echoo华地于&#160;2022-01-06 14:07:10 发布 jQuery的开发速度很快,几乎每半年一个大版本,每两个月一个小版本。 每个版本都会引入一些新功能。今天我想介绍的,就是从jQuery 1
jQuery tableExport导出 excel 上篇写的是jQuery&#160;导出word,就试试导出excel。看见网上写的很乱,我这就把我写的整理下来,有部分来自网上capy 1. js文件的引用 &lt;script type=&quot;text/javascript&quot;
jQuery的遍历-prev()和next()方法 &lt;div class=&quot;box&quot; id=&quot;box&quot;&gt; &lt;a href=&#39;#&#39; class=&quot;a&quot;&gt; &lt;input type=&quot;tex
attr()和addClass()的区别 方法 addClass() attr()用途&#x9;追加样式&#x9;设置样式对同一个网页元素操作&#x9;&lt;p&gt;test&lt;/p&gt;第1次使用方法&#x9;$(&quot;p&quot;).addClass(&quot;high&quot;);&#x9;$(&quot;p&
前端——函数(匿名函数、自执行函数) FreshLemon_ 于 2019-06-11 17:11:49 发布 函数声明:function box(){} 函数表达式:var box = function(){}; 匿名函数:function(){} (属于函数表达式) 1声明了一个函数: var
js: 获取标签元素data-*属性值的方法 彭世瑜 于 2022-05-23 09:59:50 发布 2165 收藏 1 文章标签: javascript 前端 jquery 版权 标签上有两个属性data-id 和 data-user-name, 需要通过js去获取 &lt;style&gt;
JavaScript函数详解:匿名函数、具名函数、函数传参、不定参、返回值、JS预解析机制 1.具名函数 定义: 调用: 方式1:方法名(); 可以多次调用 方式2:在事件中调用,直接写函数名,不需用括号 2.匿名函数 没有名字的函数 匿名函数在使用时只有两种情况: 1.匿名函数自执行:声明后不需要
如何等待ajax完成再执行相应操作 ajax广泛应用于异步请求,对于大多数业务来说,这是十分方便的,但对于一些特殊的业务,ajax的异步性会起到相反的作用。 例如在ajax请求成功后,后续的操作需要依赖ajax执行成功后的相应操作。 // 声明一个表示状态的全局变量 status var statu
一步一步教你写一个jQuery的插件教程(Plugin) 更新时间:2009年09月03日 02:10:54 作者: 我将会在下面的例子中一个一个的说明上面这几个条件,做完这些事情后我们就会创建一个高亮显示text的简单插件。 jQuery 的plugin开发需要注意的事情, 1. 明确jQuery