您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關jQuery如何實現彈窗遮罩效果的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
效果圖:
圖(1)初始圖
圖(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如何實現彈窗遮罩效果”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。