Modal
只能使用關閉功能關閉視窗,設定 data-keyboard="false", data-backdrop="static"
1 |
<img data-toggle="modal" data-target="#ModalBoss" data-keyboard="false" data-backdrop="static" src="/img/Boss.png"> |
--
Tooltips, Popovers
- Popover for long text without spaces
- How do you add line break to JQuery popover
- Jquery/Bootstrap hover not working after ajax call
針對超長且無空格英數字串,必須另外設定 CSS 處理
1 2 3 4 5 6 7 8 |
<style> .popover { max-width: none; } .popover-content { word-wrap: break-word; } </style> |
jQuery Ajax 完成後執行,網頁內容為 ajax 載入,Javascript 在 HTML 一開始載入無法獲取對象,部份操作可以使用 $(document).on() ,不過並不是萬能
1 2 3 4 5 6 7 |
<script> $(document).ajaxStop(function () { $('[data-toggle="popover"]').popover({ html:true }); }); </script> |
--
- http://jquery-plugins.net/jquery-blockui-plugin
- http://www.malsup.com/jquery/block/#demos
- http://www.bootstrapzero.com/bootstrap-template/blocks
- http://designmodo.github.io/startup-demo/?u=787
- http://respontent.frebsite.nl/
--
自訂組件 - 移除 glyphicons
到 Customize and download · Bootstrap 自訂需求後,到最下方點擊 Compile and Download 即可
--
1,508 total views, 1 views today