91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

jQuery怎么實現彈窗遮罩效果

發布時間:2022-03-31 09:57:25 來源:億速云 閱讀:265 作者:iii 欄目:開發技術

這篇文章主要介紹“jQuery怎么實現彈窗遮罩效果”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“jQuery怎么實現彈窗遮罩效果”文章能幫助大家解決問題。

效果圖:

jQuery怎么實現彈窗遮罩效果

圖(1)初始圖

jQuery怎么實現彈窗遮罩效果

圖(2)點擊按鈕后

代碼如下:

<!DOCTYPE HTML>
<html>
 <head>
 <meta charset="UTF-8" />
 <title></title>
 <style>
  #mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #666;
  opacity: 0.5;
  filter: alpha(opacity=50)-moz-opacity: 0.5;
  display: none;
  }
  .popup {
  position: absolute;
  left: 50%;
  width: 600px;
  height: 200px;
  background: #fff;
  z-index: 1000;
  border: 1px solid #333;
  display: none;
  }
  .btn_close {
  position: absolute;
  top: 5px;
  right: 5px;
  }
 </style>
 </head>
 <body>
 <button class="btn_show">遮罩層</button>
 <div id="mask"></div>
 <div class="popup">
  <button class="btn_close">x</button>
 </div>
 <script src="http://cdn.bootcss.com/jquery/3.1.1/jquery.js"></script>
 <script>
  $(function() {
  $('.btn_show').click(function() {
   $('#mask').css({
   display: 'block',
   height: $(document).height()
   })
   var $Popup = $('.popup');
   $Popup.css({
   left: ($('body').width() - $Popup.width()) / 2+ 'px',
   top: ($(window).height() - $Popup.height()) / 2 + $(window).scrollTop() + 'px',
   display: 'block'
   })
  })
  $('.btn_close').click(function() {
   $('#mask,.popup').css('display', 'none');
  })
  })
 </script>
 </body>
</html>

關于“jQuery怎么實現彈窗遮罩效果”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

北海市| 曲水县| 调兵山市| 老河口市| 龙胜| 深圳市| 砀山县| 铁岭市| 晋中市| 宣汉县| 邯郸县| 黎平县| 宁波市| 万山特区| 库伦旗| 若尔盖县| 沙田区| 新宾| 皋兰县| 凤城市| 上杭县| 临清市| 亳州市| 南部县| 长岛县| 灌南县| 古交市| 阿克| 凤阳县| 泗阳县| 梨树县| 红安县| 吉木萨尔县| 阜南县| 高邮市| 荃湾区| 鄂州市| 松江区| 陇南市| 庆安县| 余江县|