我有這樣的jsfiddle:http://jsfiddle.net/jsFiddlePlayer/8XdVt/338/響應引導模式
的引導模式需要填寫頁面的大部分,被放置100像素從頁面的頂部,並不會導致頁面滾動。換句話說,整個模態需要在顯示區域顯示。它還有一個背景圖片,需要以響應式的方式適合模式。
我已使用此SO post以及this article。但是,如何將模式限制在沒有滾動條的顯示區域並保持背景圖像的響應?正如你注意到的,在某些屏幕尺寸下,模態在膝蓋處切斷圖片中的人物。
該解決方案可以包含jQuery,因此它不一定是純CSS。謝謝。
這裏的HTML:
<!-- Button trigger modal -->
<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#onload-popup">
Launch modal
</button>
<div class="modal fade" role="dialog" aria-hidden="true" id="onload-popup">
<div class="modal-dialog center-block">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="gridSystemModalLabel">Modal title</h4>
</div>
<div class="modal-body">
<div class="container-fluid">
<div class="row">
Content goes here.
</div>
</div>
</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><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
這裏的CSS:
.modal {
top:100px;
}
.modal-backdrop {
top:100px;
}
.modal-dialog {
width: 95%;
height: 100%;
padding: 0;
}
.modal-content {
min-height: 100%;
height: auto;
border-radius: 0;
overflow:auto;
background-size: cover;
background-image: url('data:image/jpg;base64, /* ... image code ... */');
background-repeat: no-repeat;
background-attachment: local;
background-position: center center;
}
更新:這是接近的解決方案:http://jsfiddle.net/jsFiddlePlayer/8XdVt/341/它仍然沒有發揮好與的背景圖像莫塔爾,因爲它被剪斷,但我不認爲有任何解決方法。
謝謝,@Michelem。但是模態的內容不應該被裁剪(溢出隱藏)。 – Alex