国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

原生js實現(xiàn)彈出層效果

2019-11-19 17:51:08
字體:
供稿:網(wǎng)友

知識要點

1.遮罩層的寬度和高度是js獲取頁面的寬高(頁面內(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(){ //獲取頁面body!內(nèi)容!的高度和寬度 var sHeight=document.documentElement.scrollHeight; var sWidth=document.documentElement.scrollWidth; //獲取可視區(qū)域高度,寬度與頁面內(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> 

以上就是本文的全部內(nèi)容,希望本文的內(nèi)容對大家的學習或者工作能帶來一定的幫助,同時也希望多多支持武林網(wǎng)!

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 河池市| 闻喜县| 昆山市| 理塘县| 邯郸市| 临沂市| 安新县| 克什克腾旗| 聂拉木县| 北票市| 确山县| 陇川县| 娱乐| 云林县| 廊坊市| 汉沽区| 稷山县| 贺兰县| 申扎县| 宿松县| 洪江市| 呼玛县| 马尔康县| 宁蒗| 板桥市| 高尔夫| 通州区| 阿拉善左旗| 呈贡县| 枞阳县| 华亭县| 和田市| 屏东市| 佛坪县| 花莲市| 大新县| 会东县| 博湖县| 昭通市| 江孜县| 两当县|