引导模态图像背景



只是想问是否有可能在我的模态背景图像?我试过搜索,但我只看到模态上的背景相关的东西,指的是页面本身。我想要的是我的模态框上有一个图像背景。还是换个颜色?谢谢。我不太擅长CSS。谢谢。

如果你想在你的模态体中添加一个图像,你可以使用

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

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

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

是的,就用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>

我假设您正在使用

的bootstrap
<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");
}

我已经得到了以下代码所需的结果,可能对某人有帮助:

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

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

在Complete Modal中显示拟合图像(包括页眉和页脚):

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

编辑:我使用的模态是直接从这里复制的标准模态

相关内容

  • 没有找到相关文章

最新更新