下面這段代碼並非是Bootstrap的遮罩,只是簡單版的遮罩效果,Bootstrap那個太啰嗦了。如果你鐘情Bootstrap的那個遮罩,來看看這篇文章“完全版:Bootstrap彈出層遮罩”。
<div class="theme-popover"> <div class="theme-poptit"> <a href="javascript:void(0);" title="關閉" class="close">×</a> <h3>登錄 是一種態度</h3> </div> <div class="theme-popbod dform"> <form class="theme-signin" name="loginform" action="" method="post"> <ol> <li><h4>你必須先登錄!</h4></li> <li><strong>用戶名:</strong><input class="ipt" type="text" name="log" value="lanrenzhijia" size="20" /></li> <li><strong>密碼:</strong><input class="ipt" type="password" name="pwd" value="***" size="20" /></li> <li><input class="btn btn-primary" type="submit" name="submit" value=" 登 錄 " /></li> </ol> </form> </div> </div> <div class="theme-popover-mask"></div>
via重要的CSS,裡面的內容樣式可以根據自己需求修改:原文來自:http://www.jb51.net/article/97841.htm
//code from http://caibaojian.com/bootstrap-modal.html .theme-popover-mask { z-index: 9998; position:fixed; top:0; left:0; width:100%; height:100%; background:#000; opacity:0.4; filter:alpha(opacity=40); display:none } .theme-popover { z-index:9999; position:fixed; top:50%; left:50%; width:660px; height:360px; margin:-180px 0 0 -330px; border-radius:5px; border:solid 2px #666; background-color:#fff; display:none; box-shadow: 0 0 10px #666; }
jQuery代碼,點擊出現,點擊右上角關閉
jQuery(document).ready(function($) { $('.theme-login').click(function(){ $('.theme-popover-mask').fadeIn(100); $('.theme-popover').slideDown(200); }) $('.theme-poptit .close').click(function(){ $('.theme-popover-mask').fadeOut(100); $('.theme-popover').slideUp(200); }) })
以上所述是小編給大家介紹的Bootstrap Modal遮罩彈出層代碼,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對網站的支持!