64

我正在将 Bootstrap 中的 Modal 与另一个不使用它的站点集成。我看到引导程序可以让您分离每个组件的 Javascript。但是 CSS 呢?如果我链接到 bootstrap.css,整个网站都会改变。我只想要足够的 CSS 来让 Modal 工作。(我尝试通过 CSS 文件,只是猜测我需要什么,但它没有用)。

4

4 回答 4

115

自 Bootstrap v3.2.5 起更新

感谢@Gruber 对 v3.2.5 的确认。

链接仍在此处,用于自定义@Fisu 提到的设置。

但是,您需要选择 4 个选项,而不是modal像说明的那样。首先单击 Toggle All 以关闭所有功能,然后选择这 4 个选项;

  • Buttons通用 CSS
  • Close icon组件下
  • Component animations (for JS)JavaScript 组件
  • ModalsJavaScript 组件

这应该会带来您需要的所有 CSS。接下来是 jQuery 插件部分,再次选择 Toggle All 以关闭所有功能,然后选择两个插件:

  • Modals链接到组件下
  • Transitions魔法下(任何类型的动画都需要)

这就是您所需要的,js ( bootstrap.min.js) 和 css(bootstrap.css您只需要稍微修改一下,下面会解释)。转到该页面的底部并选择编译和下载以获取您的包。

最后要注意的一件事。正如@Rrrrrrrrrk 所提到的,“我发现它仍然在css 的开头添加了很多规范化,但可以安全地删除它(从html 到img,保持css 从.img-responsive 开始)。” 这仍然有效。 我还添加了以下 css 以将一些样式强制到 Modals 中:

.modal { font-family:Arial,Helvetica,sans-serif!important}
.modal p {font-family:"Helvetica Neue",Helvetica,Arial,sans-serif !important; color:#000 !important; font-size:14px;}

这只是确保字体与原始模态样式相似,并且不会采用您的页面样式(可能会进行更多调整)。最后要注意的一点,此时您可以通过http://cssminifier.com/运行它来缩小 css 。节省了几 KB。


实现模态:

我还不如干完这件事。我正在使用 cookie 插件,因为我想给我的用户一个选项来隐藏消息 14 天,这是在代码中设置的。以下是您需要的代码块:

这应该在<head>你的文档中,可能在你的任何 css 之后,所以即使在结束</head>标记之前也可以工作。

<!-- CSS NEEDED FOR THE IMPORTANT MESSAGE MODAL POPUP -->

    <!-- Latest compiled and minified CSS -->
    <link rel="stylesheet" href="modalsonly/css/bootstrap-3.2.0.min.css">

<!-- END CSS NEEDED FOR THE IMPORTANT MESSAGE MODAL POPUP -->

这应该在您的<body>. 这将创建模态,并且您包含的 css 将隐藏它。

<!-- HTML NEEDED FOR THE IMPORTANT MESSAGE MODAL POPUP -->

    <div class="modal fade " id="important-msg" tabindex="-1" role="dialog" aria-labelledby="important-msg-label" aria-hidden="true">
      <div class="modal-dialog">
        <div class="modal-content">
          <div class="modal-header">
            <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
            <h4 class="modal-title" id="important-msg-label">Message Title!</h4>
          </div>
          <div class="modal-body">
            <p>Message text</p>
          </div>
          <div class="modal-footer">
            <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
            <button type="button" class="btn btn-primary" id="dont-show-again">Don't Show Again</button>
          </div>
        </div>
      </div>
    </div>

<!-- END HTML NEEDED FOR THE IMPORTANT MESSAGE MODAL POPUP -->

此代码应位于结束</body>标记之前。它加载 jQuery、bootstrap 和我需要的 cookie 插件。

<!-- PLUGINS NEEDED FOR THE IMPORTANT MESSAGE MODAL POPUP -->

    <!-- Latest jQuery (1.11.1) -->
    <script src="modalsonly/js/jquery-1.11.1.min.js"></script>

    <!-- Latest compiled and minified JavaScript -->
    <script src="modalsonly/js/bootstrap-3.2.0.min.js"></script>    

    <!-- jQuery Cookie -->
    <script src="modalsonly/js/jquery.cookie-1.4.1.min.js"></script>

<!-- END PLUGINS NEEDED FOR THE IMPORTANT MESSAGE MODAL POPUP -->

最后,您需要在上述插件之后添加此脚本。这是根据我的情况定制的,如果没有设置 cookie,我只会启动模式,并且如果模式启动创建了一个单击“不再显示”的功能,它会创建 cookie 以禁用模式的启动。

<script>
    //Start the DOM ready
    $( document ).ready(function() {


        //CODE NEEDED FOR THE IMPORTANT MESSAGE MODAL POPUP

            //Check to see if the cookie exists for the Don't show again option
            if (!$.cookie('focusmsg')) {
                //Launch the modal when you first visit the site            
                $('#important-msg').modal('show');
            }

            //Don't show again mouse click
            $("#dont-show-again").click( function() {

                //Create a cookie that lasts 14 days
                $.cookie('focusmsg', '1', { expires: 14 });     
                $('#important-msg').modal('hide');      

            }); //end the click function for don't show again

        //END CODE NEEDED FOR THE IMPORTANT MESSAGE MODAL POPUP


    }); //End the DOM ready
</script>

希望这可以帮助!祝你好运。

于 2014-10-09T19:40:54.387 回答
15

转到Bootstrap 自定义部分并在组件部分中仅选择模式选项。下载文件,打开bootstrap.css文件并将全部内容复制到您自己的 CSS 文件中。

如果您尝试找出您需要哪些特定部分,您可能会错过一些重要的东西,此外,模态 css 本身并不太大。

更新:链接现在在这里。我发现它仍然在 css 的开头添加了很多规范化,但可以安全地删除它(从 html 到 img,保持 css 从 .img-responsive 开始)。

于 2013-06-13T13:37:49.843 回答
9

在这里,您可以使用引导程序 3:

JSnippet DEMO 和源代码

github gist 中的源代码

包括CSS之后,JS的用法完全一样:

<!-- Button HTML (to Trigger Modal) -->
<a href="#myModal" class="btn btn-lg btn-primary" data-toggle="modal">Launch Demo Modal</a>

<!-- Modal HTML -->
<div id="myModal" class="modal fade">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
                <h4 class="modal-title">Confirmation</h4>
            </div>
            <div class="modal-body">
                <p>Do you want to save changes you made to document before closing?</p>
                <p class="text-warning"><small>If you don't save, your changes will be lost.</small></p>
            </div>
            <div class="modal-footer">
                <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
                <button type="button" class="btn btn-primary">Save changes</button>
            </div>
        </div>
    </div>
</div>
于 2015-05-27T20:05:04.973 回答
2

仅我的 CSS+js 引导模式:

  document.querySelector('.mymodalonline').onclick = function() {  document.querySelector('.modal').classList.toggle('open');}

  document.getElementById('closf').onclick = function() {  document.querySelector('.modal').classList.toggle('open');}
 .hidden {
    display: none;
}
  .open {
    display: block!important;
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  background-color: #00000063;
  padding-top: 100px;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
[role="button"] {
  cursor: pointer;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
<a href="#myModal" data-toggle="modal" class="mymodalonline" onclick="return false;"><span>Обратный<br>звонок</span></a>

<!-- HTML-код модального окна -->
<div id="myModal" class="modal fade text-center">
  <div class="modal-dialog">
    <div class="modal-content">
      <!-- Заголовок модального окна -->
      <div class="modal-header">
        <button type="button" id="closf" class="close" data-dismiss="modal" aria-hidden="true">x</button>
        <h4 class="modal-title">Заказать звонок</h4>
      </div>
      <!-- Основное содержимое модального окна -->
      <div class="modal-body">
      <div class="row">
     <div class="col-xs-2"></div>
      <div class="col-xs-8">
        111
      </div>
    <div class="col-xs-2"></div>
        </div></div>
    </div>
  </div>
</div>

于 2020-06-28T09:10:34.113 回答