js实现仿网易点击弹出提示同时背景变暗效果

本文实例讲述了js实现仿网易点击弹出提示同时背景变暗效果。分享给大家供大家参考。具体如下:

这里仿网易点击弹出提示,背景变暗提示层效果,圆角,美观简洁,代码稍嫌多。

运行效果如下图所示:

js实现仿网易点击弹出提示同时背景变暗效果

在线演示地址如下:

具体代码如下:

<html> <head> <title>点击弹出提示,背景变暗</title> <script> function msg(info){ var p=document.createElement("DIV"); if (!info) var info='<a href="#" target="_blank">欢迎光临</a>'; p.id="p"; p.style.position="absolute"; p.style.width=document.body.scrollWidth; p.style.height=(document.body.offsetHeight>document.body.scrollHeight)?'100%':document.body.scrollHeight; p.style.zIndex='998'; p.style.top='0px'; p.style.left='0%'; p.style.backgroundColor="gray"; p.style.opacity='0.5'; p.style.filter="alpha(opacity=80)"; document.body.appendChild(p); var p1=document.createElement("DIV"); var top=parseInt(parseInt(document.body.scrollHeight)*0.25)+document.body.scrollTop; p1.style.position="absolute"; p1.style.width="300px"; p1.id="p1"; var left=Math.ceil(((document.body.scrollWidth)-parseInt(p1.style.width.replace('px','')))/2)+document.body.scrollLeft; p1.style.height="200px"; p1.style.zIndex='999'; p1.style.top=top+'px'; p1.style.left=left+'px'; p1.style.border="0px solid red"; var html=""; html+="<center>" html+="<div></div>" html+="<div></div>" html+="<div></div>" html+="<div> ⊙ 友情提示:</div>" html+="<div>"+info+"<br><br><br>[ <a href='javascript:this.cancle()'> 关闭</a> ]</div>" html+="<div></div>" html+="<div></div>" html+="<div></div>" html+="</center>" document.body.appendChild(p1); p1.innerHTML=html; var arr=document.getElementsByTagName("select"); var i=0; while(i<arr.length){ arr[i].style.visibility='hidden'; i++; } this.cancle=function(){ document.body.removeChild(document.getElementById('p')); document.body.removeChild(document.getElementById('p1')); var arr=document.getElementsByTagName("select"); var i=0; while(i<arr.length){ arr[i].style.visibility='visible'; i++; } } } </script> </head> <body> <input value='点击弹出提示' type='button' /> </body> </html>

希望本文所述对大家的javascript程序设计有所帮助。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wggsfw.html