web-dev-qa-db-ja.com

IE8でBootstrap 3モーダルの幅を変更するにはどうすればよいですか?

IE8をサポートする必要があります。モーダル自体は正常に機能しますが、サイズ変更の試み(Firefoxでは正常に機能します)はIE8では機能しません。

クラス(この例ではワイドモーダル)をモーダルダイアログdiv(Bootstrap構造内の2番目のネストされたもの))に追加し、CSSを介して幅を適用しています。

HTML:

       <div class="modal fade" id="modalTest" role="dialog">
            <div class="modal-dialog wide-modal">
              <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">Testing Modal</h4>
                </div>
                <div class="modal-body">
                  <img src="content/Example-Infographic.jpg" width="100%" />
                </div>
                <div class="modal-footer">
                  <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
                </div>
              </div><!-- /.modal-content -->
            </div><!-- /.modal-dialog -->
        </div>

CSS:

.wide-modal {
    width: 60%;
}

上下のdivにクラスを追加してみましたが、効果はありませんでした。これはFirefoxの魅力のように機能しますが、IE8ではまったく効果がありません。私もピクセル幅で試しましたが、違いはありません。 respond.jsライブラリを用意しているので、一般にIE8はこれ以外の動作をします。

34
Chaz

bootstrap 3では、幅を.modalクラスではなく.modal-dialogに割り当てる必要があります

#modalTest .modal-dialog
{
    width: 500px; /* your width */
}
80
dante

CSSとjQueryの組み合わせとこのページのヒントを使用して、Bootstrap 3.を使用して流動的な幅と高さを作成しました。Win7のIE8でもこれをテストしました。

最初に、コンテンツ領域の幅とオプションのスクロールバーを処理するCSS

.modal.modal-wide .modal-dialog {
  width: 90%;
}
.modal-wide .modal-body {
  overflow-y: auto;
}

そして、必要に応じてコンテンツ領域の高さを調整するjQuery

$(".modal-wide").on("show.bs.modal", function() {
  var height = $(window).height() - 200;
  $(this).find(".modal-body").css("max-height", height);
});

http://scottpdawson.com/development/creating-a-variable-width-modal-dialog-using-bootstrap-3/ の完全な説明とコード

14
Scott Dawson

私はそれが遅いことを知っていますが、ちょうど bs3 docs で見つかりましたmodal-lgモーダルのクラス

<!-- Large modal -->
<button class="btn btn-primary" data-toggle="modal" data-target=".bs-example-modal-lg">
  Large modal
</button>

<div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
  <div class="modal-dialog modal-lg">
    <div class="modal-content">
     ...
    </div>
  </div>
</div>

<!-- Small modal -->
<button class="btn btn-primary" data-toggle="modal" data-target=".bs-example-modal-sm">
  Small modal
</button>

<div class="modal fade bs-example-modal-sm" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
 <div class="modal-dialog modal-sm">
   <div class="modal-content">
     ...
   </div>
 </div>
</div>
10
bto.rdz

もちろんこれにより、すべてのモーダルウィンドウの幅が変更されますが、これがどのように機能するかについてのより良いアイデアを提供するかもしれません。モーダルウィンドウをこのように変更しました。

    .modal-body {
        position: relative;
        padding: 20px;
        min-width: 800px; /* SET THE WIDTH OF THE MODAL */
    }

    .modal-content {
        position: relative;
        background-color: #fff;
        border: 1px solid #999;
        border: 1px solid rgba(0,0,0,0.2);
        border-radius: 6px;
        outline: 0;
        -webkit-box-shadow: 0 3px 9px rgba(0,0,0,0.5);
        box-shadow: 0 3px 9px rgba(0,0,0,0.5);
        background-clip: padding-box;
        width: 900px; /* SET THE WIDTH OF THE MODAL */
        margin: 50px 0 0 -150px; /* CHANGE MARGINS TO ACCOMMODATE THE NEW WIDTH */
    }



<!-- Button trigger modal -->
  <a data-toggle="modal" href="#myModal" class="btn btn-primary btn-lg">Launch demo modal</a>

  <!-- 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-hidden="true">&times;</button>
          <h4 class="modal-title">Modal title</h4>
        </div>
        <div class="modal-body">
          ...
        </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 -->
3
Stirling
#modalTest.modal-dialog{
    width: <insert size> !important;
}
the !important is important :v
3
Damathryx

ピクセル単位で幅を設定し、左マージンを調整する必要があると思います。例えば、

.modal-dialog {
    width:700px;
    margin-left:-320px;
}

左マージンは、モーダルの幅の半分から、スクロールバーのマイナス30pxでなければなりません。

Bootplyの例を次に示します。 http://bootply.com/8521

2
Zim