jQuery實現點擊彈出背景變暗遮罩效果執行個體代碼,jquery遮罩

來源:互聯網
上載者:User

jQuery實現點擊彈出背景變暗遮罩效果執行個體代碼,jquery遮罩

本文是小編實現的一個簡單的jquery點擊彈出背景變暗遮罩效果,並且點擊空白處隱藏彈出層的效果,效果非常棒,小編只給大家貼出了關鍵代碼了,大家可以根據個人需要適當的新增內容。

js代碼如下:

 <script type="text/javascript"> $(document).ready(function(){ $(".tkyy").click(function(event){    event.stopPropagation(); //停止事件冒泡   $(".marsk-container").toggle(); }); //點擊空白處隱藏彈出層   $("body").click(function(event){     var _con = $('.tkyy_con');  // 設定目的地區域     if(!_con.is(event.target) && _con.has(event.target).length ==0){       $('.marsk-container').hide();     //淡出消失     }  }); });</script>

css代碼:

.marsk-container{background: #FFFFFF; display: none;position: absolute;position: fixed; top: 0; right: 0; left: 0; bottom: 0px; background: rgba(0,0,0,.5); z-index: 10; }

html代碼:

 <div class="tkyy"><span class="mui-icon mui-icon-arrowdown"></span>請選擇退款類型 </div>          <div class="marsk-container">            <div class="tkyy_con">            <div class="mui-input-row mui-radio ">              <label>退運費</label>              <input name="radio" type="radio" checked>            </div>            <div class="mui-input-row mui-radio ">              <label>收到商品破損</label>              <input name="radio" type="radio" checked>            </div>            <div class="mui-input-row mui-radio ">              <label>少件/漏發</label>              <input name="radio" type="radio" checked>            </div>            <div class="mui-input-row mui-radio ">              <label>商品需要維修</label>              <input name="radio" type="radio" checked>            </div>            <div class="mui-input-row mui-radio ">              <label>發票問題</label>              <input name="radio" type="radio" checked>            </div>            <div class="mui-input-row mui-radio ">              <label>收到商品與描述不符</label>              <input name="radio" type="radio" checked>            </div>            <div class="mui-input-row mui-radio ">              <label>商品品質問題</label>              <input name="radio" type="radio" checked>            </div>            <div class="mui-input-row mui-radio ">              <label>描述問題</label>              <input name="radio" type="radio" checked>            </div>          </div>          </div>  

效果

以上所述是小編給大家介紹的jQuery實現點擊彈出背景變暗遮罩效果,希望對大家有所協助,如果大家有任何疑問請給我留言,小編會及時回複大家的。在此也非常感謝大家對幫客之家網站的支援!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.