custombox.js 外掛程式如何點空白處不隱藏彈出框 overlayClose屬性的應用

來源:互聯網
上載者:User

標籤:tom   success   tar   應用   bootstra   ima   event   effect   nts   

bootstrap中使用了custombox.js 外掛程式,如下代碼

 

<button  href="/systems/application/add" data-target="custom-modal" type="button" class="btn_common btn-success waves-effect waves-light" data-animation="fadein" data-overlaySpeed="200" data-overlayColor="#36404a" data-overlayClose=""  data-plugin="custommodal">
                                添加
                            </button>

 

data-overlayClose="" 
這裡一定是空的,不要寫任何內容,這樣就可以彈出框點空白處不隱藏了

 

具體可以看jquery.core.js 檔案中的 這個函數  jquery.core.js檔案是我用的模板中的一個檔案

Components.prototype.initCustomModalPlugin = function() {
        $(‘[data-plugin="custommodal"]‘).on(‘click‘, function (e) {
            Custombox.open({
                target: $(this).attr("href"),
                effect: $(this).attr("data-animation"),
                overlaySpeed: $(this).attr("data-overlaySpeed"),
                overlayColor: $(this).attr("data-overlayColor"),
                overlayClose: Boolean($(this).attr("data-overlayClose"))  ——  這裡直接寫false,也能實現隱藏,但是無法在cshtml檔案中控制,還是不要直接寫false
            });
            e.preventDefault();
        });
    }

 

具體還可以參考custombox.min.js 檔案內的一段代碼 a.get().settings.overlayClose  這裡獲得上邊的配置,實現是否可以點空白隱藏彈出框

最終還是靠overlayClose這個屬性,解決了問題

 

data-overlayClose="true" 可以點空白處隱藏彈出框

data-overlayClose=""
點空白出不隱藏彈出框

如果中我的架構內,把這個屬性去掉 overlayClose: Boolean($(this).attr("data-overlayClose"))  因為這裡是空的,找不到這個屬性,值就是false,也可以實現不隱藏彈出框

custombox.js 外掛程式如何點空白處不隱藏彈出框 overlayClose屬性的應用

相關文章

聯繫我們

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