原生js實(shí)現(xiàn)彈出層效果
知識(shí)要點(diǎn)
1.遮罩層的寬度和高度是js獲取頁(yè)面的寬高(頁(yè)面內(nèi)容)
//獲取遮罩層(內(nèi)容)的高度和寬度 var sHeight=document.documentElement.scrollHeight; var sWidth=document.documentElement.scrollWidth;
2.登錄框設(shè)置靜止定位fixed
3.登錄框居中顯示公式:(可視區(qū)域?qū)捀?登錄框?qū)捀?/2
//獲取login的寬度和高度并設(shè)置偏移值 var dHeight=oLogin.offsetHeight; var dWidth=oLogin.offsetWidth; oLogin.style.left=(sWidth-dWidth)/2+"px"; oLogin.style.top=(wHeight-dHeight)/2+"px";
完整代碼
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>demo</title> <style> body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td{margin:0;padding:0;} body,button,input,select,textarea{font:12px/1.5 tahoma,arial,\5b8b\4f53;} h1,h2,h3,h4,h5,h6{font-size:100%;} address,cite,dfn,em,var{font-style:normal;} code,kbd,pre,samp{font-family:courier new,courier,monospace;} small{font-size:12px;} ul,ol{list-style:none;} a{text-decoration:none;} a:hover{text-decoration:underline;} sup{vertical-align:text-top;} sub{vertical-align:text-bottom;} legend{color:#000;} fieldset,img{border:0;} button,input,select,textarea{font-size:100%;} table{border-collapse:collapse;border-spacing:0;} .clear{clear: both;float: none;height: 0;overflow: hidden;} p{font-size: 100px;} #mask{ background: #000; opacity: 0.75; filter: alpha(opacity=75); height: 1000px; width: 100%; position: absolute; left: 0; top: 0; z-index: 1000; } #login{ position: fixed; left: 30%; top: 30%; z-index:1001; } .loginCon{ width: 670px; height: 380px; background: #fff; border:5px solid #F01400; } #close{ width: 30px; height: 30px; background: blue; cursor: pointer; position: absolute; right: 10px; top: 10px; } #btnLogin{ width: 80px; height: 40px; background: #F01400; margin:0 auto; display: block; cursor: pointer; border-style: none; color: #fff; font-size: 16px; } </style> </head> <body> <button id="btnLogin">登錄</button> <!-- <div id="mask"></div> <div id="login"> <div class="loginCon"> <div id="close"></div> </div> </div> --> <p>1</p> <p>1</p> <p>1</p> <p>1</p> <p>1</p> <p>1</p> <p>1</p> <p>1</p> <p>1</p> <p>1</p> <script type="text/javascript"> function openNew(){ //獲取頁(yè)面body!內(nèi)容!的高度和寬度 var sHeight=document.documentElement.scrollHeight; var sWidth=document.documentElement.scrollWidth; //獲取可視區(qū)域高度,寬度與頁(yè)面內(nèi)容的寬度一樣 var wHeight=document.documentElement.clientHeight; //創(chuàng)建遮罩層div并插入body var oMask=document.createElement("div"); oMask.id="mask"; oMask.style.height=sHeight+"px"; //寬度直接用100%在樣式里 document.body.appendChild(oMask); //創(chuàng)建登錄層div并插入body var oLogin=document.createElement("div"); oLogin.id="login"; oLogin.innerHTML="<div class='loginCon'><div id='close'></div></div>" document.body.appendChild(oLogin); //獲取login的寬度和高度并設(shè)置偏移值 var dHeight=oLogin.offsetHeight; var dWidth=oLogin.offsetWidth; oLogin.style.left=(sWidth-dWidth)/2+"px"; oLogin.style.top=(wHeight-dHeight)/2+"px"; //獲取關(guān)閉按鈕 var oClose=document.getElementById("close"); oMask.onclick=oClose.onclick=function(){ document.body.removeChild(oMask); document.body.removeChild(oLogin); } } window.onload=function(){ var oBtn=document.getElementById("btnLogin"); oBtn.onclick=function(){ openNew(); } } </script> </body> </html>
以上就是本文的全部?jī)?nèi)容,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來(lái)一定的幫助,同時(shí)也希望多多支持腳本之家!
相關(guān)文章
微信小程序?qū)崿F(xiàn)文章關(guān)注功能詳細(xì)流程
在社交小程序里有個(gè)常見(jiàn)的場(chǎng)景是關(guān)注功能,我們本篇以關(guān)注已經(jīng)發(fā)布的文章為例,講解一下關(guān)注功能如何實(shí)現(xiàn)2022-08-08跟我學(xué)習(xí)javascript的嚴(yán)格模式
跟我學(xué)習(xí)javascript的嚴(yán)格模式,對(duì)javascript嚴(yán)格模式進(jìn)行概述,進(jìn)入嚴(yán)格模式的方法,以及如何調(diào)用和相關(guān)語(yǔ)法,感興趣的小伙伴們可以參考一下2015-11-11asp javascript 實(shí)現(xiàn)關(guān)閉窗口時(shí)保存數(shù)據(jù)的辦法
asp javascript 實(shí)現(xiàn)關(guān)閉窗口時(shí)保存數(shù)據(jù)的辦法...2007-11-11JS公共小方法之判斷對(duì)象是否為domElement的實(shí)例
下面小編就為大家?guī)?lái)一篇JS公共小方法之判斷對(duì)象是否為domElement的實(shí)例。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2016-11-11JS如何獲取瀏覽器聲音、麥克風(fēng)以及通知權(quán)限
在我們開(kāi)發(fā)網(wǎng)頁(yè)的時(shí)候偶爾會(huì)有需要用戶(hù)錄音的情況,下面這篇文章主要給大家介紹了關(guān)于JS如何獲取瀏覽器聲音、麥克風(fēng)以及通知權(quán)限的相關(guān)資料,文中通過(guò)代碼介紹的非常詳細(xì),需要的朋友可以參考下2024-03-03js點(diǎn)擊返回跳轉(zhuǎn)到指定頁(yè)面實(shí)現(xiàn)過(guò)程
這篇文章主要為大家詳細(xì)介紹了js點(diǎn)擊返回跳轉(zhuǎn)到指定頁(yè)面實(shí)現(xiàn)過(guò)程,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2016-04-04JavaScript中通過(guò)prototype屬性共享屬性和方法的技巧實(shí)例
這篇文章主要介紹了JavaScript中通過(guò)prototype屬性共享屬性和方法的技巧實(shí)例,本文直接給出一個(gè)代碼實(shí)例,需要的朋友可以參考下2015-03-03