Bootstrap模态图像背景

时间:2015-06-01 13:46:25

标签: css twitter-bootstrap modal-dialog bootstrap-modal

只想问一下我的模态中是否可以有背景图像?我尝试过搜索,但我只看到模态的背景相关内容,它指的是页面本身。我想要的是我的模态框,上面有图像背景。或改变它的颜色?谢谢。我在CSS方面不是那么好。感谢。

4 个答案:

答案 0 :(得分:6)

假设您想要在模态体中使用图像,则可以使用

.modal-body {
   background-image: url(path/to/image);
}

或者,如果你想要它在你的模态后面,你可以使用

.modal-backdrop {
   background-image: url(path/to/image);
}

答案 1 :(得分:1)

我假设您正在使用

中的引导程序
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/js/bootstrap.min.js"></script>

您需要修改

<div class="modal-content">
    ...
</div>

为:

<div class="modal-content modal-popout-bg">

的CSS:

.modal .modal-popout-bg {
    background-image: url("http://somepic.com/somepic.jpg");
}

答案 2 :(得分:0)

是的,只需使用background-image: url(path/to/your/image);

$('#myModal').modal() 
.modal-body {
    background-image: url('http://myfunnymemes.com/wp-content/uploads/2015/04/Doge-Meme-Lion-In-All-Its-Majestic-Glory.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap.min.css">

<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
        <h4 class="modal-title" id="myModalLabel">Modal title</h4>
      </div>
      <div class="modal-body">
        test
      </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>

答案 3 :(得分:0)

我通过以下代码获得了所需的结果,可能对某人有帮助:

用于仅在正文中显示合适的图像:

.modal-body {
  background-size: cover;
  background-image: url("./bg_image.png");
}

用于在完整模态(包括页眉和页脚)中显示合适的图像:

.modal-content {
  background-size: cover;
  background-image: url("./bg_image.png");
}

编辑:我使用的模态是标准的,直接从here