基於JavaScript如何製作遮罩層對話方塊_javascript技巧

來源:互聯網
上載者:User

1.遮罩層其實就是一個覆蓋全介面的半透明的DIV,並處理zIndex使他浮於其他元素之上,是使用者不能點擊下邊的元素,或者說點擊沒有反應。

2.在遮罩層上方在彈出一個層,由於遮罩層擋住了其他所有元素,使用者只能點擊彈出層,製造出強制回應視窗的假象。

廢話不多說了,直接給大家貼js代碼了。

<htmlxmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"/> <title>UntitledDocument</title> <script> function openDiv(newDivID) { var newMaskID = "mask"; //遮罩層id var newMaskWidth =document.body.scrollWidth;//遮罩層寬度 var newMaskHeight =document.body.scrollHeight;//遮罩層高度 //mask遮罩層 var newMask = document.createElement("div");//建立遮罩層 newMask.id = newMaskID;//設定遮罩層id newMask.style.position = "absolute";//遮罩層位置 newMask.style.zIndex = "1";//遮罩層zIndex newMask.style.width = newMaskWidth + "px";//設定遮罩層寬度 newMask.style.height = newMaskHeight + "px";//設定遮罩層高度 newMask.style.top = "0px";//設定遮罩層於上邊距離 newMask.style.left = "0px";//設定遮罩層左邊距離 newMask.style.background = "gray";//#33393C//遮罩層背景色 newMask.style.filter = "alpha(opacity=40)";//遮罩層透明度IE newMask.style.opacity = "0.40";//遮罩層透明度FF document.body.appendChild(newMask);//遮罩層添加到DOM中 window.open('http://www.baidu.com','_blank','width=500,height=260,menubar=no,toolbar=no');  //彈出子頁面,具體自用自改//彈出層滾動置中 function newDivCenter() { newDiv.style.top = (document.body.scrollTop + document.body.clientHeight/2 - newDivHeight/2) + "px"; newDiv.style.left = (document.body.scrollLeft + document.body.clientWidth/2 - newDivWidth/2) + "px"; } if(document.all)//處理滾動事件,使彈出層始終置中 { window.attachEvent("onscroll",newDivCenter); } else { window.addEventListener('scroll',newDivCenter,false); } //關閉新圖層和mask遮罩層 var newA = document.createElement("span"); newA.href = "#"; newA.style.position = "absolute";//span位置 newA.style.left=350+ "px"; newA.innerHTML = "Close"; newA.onclick = function()//處理關閉事件 { if(document.all) { window.detachEvent("onscroll",newDivCenter); } else { window.removeEventListener('scroll',newDivCenter,false); } document.body.removeChild(newMask);//移除遮罩層 document.body.removeChild(newDiv);////移除彈出框 return false; } newDiv.appendChild(newA);//添加關閉span } </script> </head> <BODY> <a onclick="openDiv('newDiv');" style="cursor:pointer">點我點我</a> <br>username:<input type="text" name="uname"/><br>u p w d:<input type="password" name="upwd"/><br /><br /><br /><br /><br /><br /> <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> <br /><br /><br /><br /><br /><br /> <a onclick="openDiv('newDiv');" style="cursor:pointer">點我點我</a> </BODY> </html>

以上所述是小編給大家介紹的基於JavaScript如何製作遮罩層對話方塊 的相關知識,希望對大家有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.