初探弹出层的实现原理

首先用几句话来描述一下实现过程,好有个思路嘛^^:(1)先创建一个div层将整个屏幕罩住(所谓的遮罩层),可设置该层的属性,例如透明度(2)在遮罩层内创建div来展示内容(这里暂时称为内容展示层),在该层就可以灵活的创建个人需要的HTML组件了。例如你在内容展示层中创建了一个iframe,嘿嘿,你就可以请求指定的URL并将其返回的内容呈现在这个iframe之中。

下面就赶紧来看看如何实现吧

1、先上HTML代码

    <body><div>body content</div><a href="javascript:void('打开弹出层');" onclick="openDialog();">打开弹出层</a></body>

 

呵呵

2、上Javascript部分

看上去有点儿长^^

        <script>window.myLayers = {};myLayer = function(opts){//默认参数var params = {width: 500,height: 370,title: '我的窗口',btnWrapH: 37,titleWrapH: 31,opacity: 0,mask: true,okClick: function(){}}//设置参数
                opts = opts ? opts : {};this.mask = (opts.mask == true || opts.mask == false) ? opts.mask : params.mask;this.okClick = opts.okClick ? opts.okClick : params.okClick;this.url = opts.url ? opts.url : "";this.content = opts.content ? opts.content : null;this.width = opts.width ? opts.width : params.width;this.height = opts.height ? opts.height : params.height;this.title = opts.title ? opts.title : params.title;this.btnWrapH = opts.btnWrapH ? opts.btnWrapH : params.btnWrapH;this.titleWrapH = opts.titleWrapH ? opts.titleWrapH : params.titleWrapH;this.opacity = opts.opacity ? opts.opacity : params.opacity;this.id = opts.id ? opts.id : parseInt(Math.random()*10000); //设置IDvar _top = window;while(_top && (_top.parent != _top.self) && _top.parent.frames.length == 0){_top = _top.parent;}this.left =_top.document.documentElement.clientWidth && _top.document.body.clientWidth/2 - this.width/2;this.top = _top.document.documentElement.clientHeight && _top.document.body.clientHeight/2 - this.height/2;this.left = this.left < 0 ? 0 : this.left;this.top = this.top < 0 ? 0 : this.top;//保存,便于在方法之间引用
                myLayers[this.id] = this;};//核心方法
            myLayer.prototype.open = function(){//定义遮罩层var _maskDiv = "<div id='_maskDiv_"+this.id+"' style='position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: #ccc; margin: 0; opacity: "+this.opacity+"; filter: alpha(opacity="+(this.opacity*100)+");'></div>"//按钮var _wrapBtn = "<div style='height: "+this.btnWrapH+"px; width: 100%; background-color: #20B2AA; position: relative;'><a href='javascript:void(0);' οnclick='myLayers[\""+this.id+"\"].cancelBtnClick(\""+this.id+"\");'  style='float: right; display: inline-block; margin-right:10px; color: green;background-color: white; padding: 1px 10px; height: 27px;  margin-top: "+((this.btnWrapH - 29)/2)+"px; line-height: 27px; text-decoration: none;'>关闭</a><a href='javascript:void(0);' onclick='myLayers[\""+this.id+"\"].okBtnClick(\""+this.id+"\");' style='float: right;  display: inline-block; margin-right: 10px; color: green; padding: 1px 10px; margin-top: "+((this.btnWrapH - 29)/2)+"px; height: 27px; line-height: 27px; background-color: white; text-decoration: none;'>确认</a></div>";//iframevar _iframe = "<iframe style='width: 100%; height: "+(this.height-(this.titleWrapH+10)-this.btnWrapH)+"px; background-color: white; overflow: auto; ' src='"+this.url+"'  frameborder='0'></iframe>";//content属性优先var _content = this.content ? this.content : _iframe;//内容展示层var _wrapIframe = "<div id='_wrapIframe_"+this.id+"' style='border: 1px solid #E0FFFF; position: absolute; left: "+this.left+"px; top: "+this.top+"px; margin: 0 auto; padding: 0; width: "+this.width+"px; height: "+this.height+"px; background-color: white;'><h3 style='position: relative; margin: 0; padding: 5px 0 5px 10px; height: 31px; line-height: 31px; background-color: #20B2AA; overflow: hidden;'><a style='height: "+this.titleWrapH+"px; line-height: "+this.titleWrapH+"px; float: right; top: 31px; margin-right: 20px; padding: 3px 10px; font-size: 17px;' href='javascript: void(0);' οnclick='myLayers[\""+this.id+"\"].closeLayer(\""+this.id+"\");'>关闭</a><span style='overflow: hidden;'>"+this.title+"</span></h3><div style='width: 100%; height: "+(this.height-(this.titleWrapH+10)-this.btnWrapH)+"px;'>"+_content+"</div>"+_wrapBtn+"</div>";var body = window.document.body;//是否显示遮罩层if(this.mask == true){body.innerHTML = body.innerHTML + _maskDiv;}body.innerHTML = body.innerHTML + _wrapIframe;};//关闭
            myLayer.prototype.closeLayer = function(layerId){var _w = document.getElementById("_wrapIframe_"+layerId);_w.parentNode.removeChild(_w);var _m = document.getElementById("_maskDiv_"+layerId);_m && _m.parentNode.removeChild(_m);};//事件
            myLayer.prototype.okBtnClick = function(layerId){myLayers[layerId].closeLayer(layerId);myLayers[layerId].okClick();};myLayer.prototype.cancelBtnClick = function(layerId){myLayers[layerId].closeLayer(layerId);};//调用打开弹出层function openDialog(){var opts = {opacity: 0.31,title: '我的标题',height: 430,width: 560,url: "layer.htm",mask: true,okClick: function(){alert("我被执行了。OK,可以提交表单了。");},content: "<p style='color: red;'><a href='javascript:void(\"打开弹出层\");' οnclick='openDialog();'>打开弹出层</a></p>"}new myLayer(opts).open();}</script>

 以上就是全部代码

 仅仅是初探。

 附上执行档地址:http://www.zhaojz.com.cn/demo/layer.htm

转载于:https://www.cnblogs.com/zhaojz/p/4186672.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/492672.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C++四种类型转换

参考&#xff1a;https://www.cnblogs.com/hyd5648/p/3921501.html

机器学习算法集锦:从贝叶斯到深度学习及各自优缺点

来源&#xff1a;图灵人工智能目录正则化算法&#xff08;Regularization Algorithms&#xff09;集成算法&#xff08;Ensemble Algorithms&#xff09;决策树算法&#xff08;Decision Tree Algorithm&#xff09;回归&#xff08;Regression&#xff09;人工神经网络&#x…

MongoDB学习笔记-06 数据库命令、固定集合、GridFS、javascript脚本

介绍MongoDB支持的一些高级功能&#xff1a; 数据库命令 固定大小的集合 GridFS存储大文件 MongoDB对服务端JavaScript的支持 数据库命令 命令的原理 MongoDB中的命令其实是作为一种特殊类型的查询来实现的&#xff0c;这些查询针对$cmd集合来执行。runCommand仅仅是接受命令文…

visual assist安装方法

参考&#xff1a;https://blog.csdn.net/yychentracy/article/details/82809888

汽车与智能家居互联时代 语音控制很关键

来源&#xff1a; I CTA编译&#xff1a;网易智能 nariiy摘要&#xff1a;对于大多数人而言&#xff0c;最昂贵的两个物件是家和汽车。如今&#xff0c;技术将这二者联系在一起&#xff0c;并互为延伸。在不断加速发展的趋势中&#xff0c;智能家居和联网汽车正在融合&#xff…

[问题解决]同时显示多个Notification时PendingIntent的Intent被覆盖?

情况是这样的&#xff0c;使用NotificationManager触发多个Notification: Java代码 private Notification genreNotification(Context context, int icon, String tickerText, String title, String content, Intent intent){ Notification notification new Notifi…

QT中的QButtonGroup

QButtonGroup类可以实现同一组的按钮的互斥操作&#xff0c; 比如当点击到某一个按钮checked时&#xff0c;其他按钮恢复到默认状态&#xff0c; 具体见 https://blog.csdn.net/naibozhuan3744/article/details/82146755 和&#xff1a;https://www.cnblogs.com/ranson7zop/p/…

【工业革命】第四次工业革命:自主经济的崛起

来源&#xff1a;产业智能官摘要&#xff1a;数据是新的资源&#xff0c;数据的处理和应用将带动第四次工业革命。随着大数据、云计算、物联网、人工智能、区块链等技术的崛起&#xff0c;很多人都说第四次工业革命即将到来。第四次工业革命到底指的是什么&#xff1f;应该如何…

mysql分表方法实现

一般来说&#xff0c;当我们的数据库的数据超过了100w记录的时候就应该考虑分表或者分区了&#xff0c;这次我来详细说说分表的一些方法。目前我所知道的方法都是MYISAM的&#xff0c;INNODB如何做分表并且保留事务和外键&#xff0c;我还不是很了解。 首 先&#xff0c;我们需…

QT中的QGridLayout布局

QGridLayout布局参考&#xff1a; https://blog.csdn.net/mynameislinduan/article/details/77893298

2019年大数据发展将走向何方

来源&#xff1a;网络大数据近日&#xff0c;包括CCF(中国计算机学会)大数据专家委员会、IDC公司(Internet Data Center 互联网数据中心)和Gartner公司等多家国内外知名信息技术研究机构均发布报告&#xff0c;对2019年乃至未来若干年的大数据产业发展趋势做出预测&#xff0c;…

iOS定时器

相关类:NSTimer A timer is not a real-time mechanism; it fires only when one of the run loop modes to which the timer has been added is running and able to check if the timer’s firing time has passed. Because of the various input sources a typical run loop…

QT给文本添加链接事件

参考自&#xff1a; https://blog.csdn.net/humanking7/article/details/80685893 说明 Qt的文本窗体部件能够显示富文本&#xff0c;使用HTML4 标记。能够以这种方式显示富文本的窗体控件有&#xff1a; QTextDocument, 以及 QLabel and QTextEdit。 关于打开超链接的两种方…

AI人必看!89页全网最全清华知识图谱报告

来源&#xff1a;智东西摘要&#xff1a;谷歌冲锋&#xff0c;淘宝猛追&#xff0c;这个AI秘密武器强在哪&#xff1f;知识图谱&#xff08;Knowledge Graph&#xff09;是人工智能的重要分支技术&#xff0c;它在2012年由谷歌提出&#xff0c;成为建立大规模知识的杀手锏应用&…

自学php【二】 PHP计算时间加一天

最近几天在做一个项目&#xff0c;主要是将SQLserver数据到MySQL数据库&#xff0c;一个url跑一次 同步一次昨天的数据&#xff0c;由于很多数据需要同步&#xff0c;所以做了一个操作界面的&#xff0c;一个单纯跑url的 在其中涉及到了对于时间的计算&#xff01;当我写完这个…

为QT添加qss样式文件

代码 QFile file("my.qss"); file.open(QFile::ReadOnly); QString styleSh tr(file.readAll()); setStyleSheet(styleSh);my.qss文件内容 /* 正常时&#xff0c;按钮颜色 */ QPushButton{background-color:rgb(240,255,255);color: rgb(0, 0, 2);border-style: o…

人机融合智能的现状与展望

来源&#xff1a;人机与认知实验室作者&#xff1a;刘伟 苌凯旋摘要&#xff1a;本文对人机融合智能的概念、应用、发展将面临的关键问题以及未来发展的方向进行简要介绍。1 引言1.1 现有人工智能的不足与挑战人工智能&#xff08;AI&#xff09;的概念于1956年的达特蒙斯学院暑…

J2EE软件开发视频教程

BF-TECH-J2EE软件开发工程师就业班课程 课时数量&#xff1a;920课时 用到技术&#xff1a;J2EE 涉及项目&#xff1a;权限管理通用模块、易买网、CRM客户关系管理系统等 咨询qq&#xff1a;1840215592 J2EE软件工程师培训视频教程结合项目&#xff0c;进行实战图书馆信息管理系…

优先队列priority_queue的使用方式

C STL中的一种数据存储结构&#xff0c;数组的方式存储&#xff0c;插入数据时&#xff0c;设置排序规则&#xff0c;可以自动排序&#xff0c; priority_queue <int,vector<int>,less<int> > p; priority_queue <int,vector<int>,greater<int&…

Unity自带网络功能——NetworkView组件、Serialize、RPC

Unity拥有大量的第三方插件&#xff0c;专门提供了对网络功能的支持。可是&#xff0c;大部分开发人员第一次接触到的还是Unity自带的网络功能&#xff0c;也就是大家常常说到的Unity Networking API。这些API是借助于组件NetworkView发挥作用的&#xff0c;而它能够简化开发人…