主頁 > 知識庫 > html實現(xiàn)彈窗的實例

html實現(xiàn)彈窗的實例

熱門標簽:智能語音電銷機器人客戶端 地圖標注沿海城市房價 通遼地圖標注app 地圖標注員工作內(nèi)容 西安金倫外呼系統(tǒng) 高德地圖標注廁所 威海語音外呼系統(tǒng)平臺 江西ai電銷機器人如何 中國地圖標注城市的

上午閑來無事,用html及原生js寫個彈窗,供參考。

<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8" />
  <title></title>
  <style type="text/css">
   body{
    margin: 0px;
   }
   .zhezhao{
    position: fixed;
    left: 0px;
    top: 0px;
    background: #000;
    width: 100%;
    height: 100%;
    opacity: 0.5;
   }
   .tankuang{
    position: relative;
    background: #fff;
    width: 50%;
    height: 80%;
    border-radius: 5px;
    margin: 5% auto;
   }
   #header{
    height: 40px;
   }
   #header-right{
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    background: red;
    color: #fff;
    right: 5px;
    top: 5px;
    text-align: center;
   }
  </style>
 </head>
 <body>
  <button type="button" onclick="dianwo()">點我</button>
  <div class="zhezhao" id='zhezhao'>
   <div class="tankuang">
    <div id="header">
     <span>我是彈窗</span>
     <div id="header-right" onclick="hidder()">x</div>
    </div>
   </div>
  </div>
  <script type="text/javascript">
   document.getElementById('zhezhao').style.display="none";
   function dianwo(){
    document.getElementById('zhezhao').style.display="";
   }
   function hidder(){
    document.getElementById('zhezhao').style.display="none";
   }
  </script>
 </body>
</html>

到此這篇關(guān)于html實現(xiàn)彈窗的實例的文章就介紹到這了,更多相關(guān)html彈窗內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持腳本之家!

標簽:阜陽 崇左 晉中 北海 營口 河池 眉山 青海

巨人網(wǎng)絡(luò)通訊聲明:本文標題《html實現(xiàn)彈窗的實例》,本文關(guān)鍵詞  html,實現(xiàn),彈窗,的,實例,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《html實現(xiàn)彈窗的實例》相關(guān)的同類信息!
  • 本頁收集關(guān)于html實現(xiàn)彈窗的實例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章