web-dev-qa-db-ja.com

Twitter Bootstrapモバイルデバイスのモーダル

ブートストラップモーダルは、AndroidおよびiOSでは正しく機能しません。問題トラッカーは問題を認識しますが、実用的なソリューションを提供しません。

2.0のモーダルはモバイルでは壊れています。

2.0のモーダルウィンドウが適切に配置されていない

画面は暗くなりますが、モーダル自体はビューポートに表示されません。ページの上部で見つけることができます。この問題は、ページを下にスクロールしたときに発生します。

Bootstrap-responsive.cssの関連部分は次のとおりです。

.modal {
    position:fixed;
    top:50%;
    left:50%;
    z-index:1050;
    max-height:500px;
    overflow:auto;
    width:560px;
    background-color:#fff;
    border:1px solid #999;
    -webkit-border-radius:6px;
    -moz-border-radius:6px;
    border-radius:6px;
    -webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);
    -moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);
    box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);
    -webkit-background-clip:padding-box;
    -moz-background-clip:padding-box;
    background-clip:padding-box;
    margin:-250px 0 0 -280px;
}

適用できる修正はありますか?

66
ty.

編集: 非公式Bootstrapモーダル変更 は、レスポンシブ/モバイルの問題に対処するために構築されました。これはおそらく、問題を解決する最も簡単で簡単な方法です。

以前に議論した問題の1つ に修正が見つかりました

bootstrap-responsive.css

.modal { 
    position: fixed; 
    top: 3%; 
    right: 3%; 
    left: 3%; 
    width: auto; 
    margin: 0; 
}
.modal-body { 
    height: 60%; 
}

およびbootstrap.css

.modal-body { 
    max-height: 350px; 
    padding: 15px; 
    overflow-y: auto; 
    -webkit-overflow-scrolling: touch; 
 }
62
acconrad

Gilの答えは約束を保持しています(彼がリンクしたライブラリ)---とりあえず、モバイルデバイスで下にスクロールしても機能しません。

CSSファイルの最後にCSSのスニペットを使用するだけで問題を解決しました。

@media (max-width: 767px) {
  #content .modal.fade.in {
    top: 5%;
  }
}

#contentセレクターは、単にhtmlをラップするIDであるため、Bootstrapの特性をオーバーライドできます(モーダルhtmlをラップする独自のIDに設定します)。

欠点:モバイルデバイスの垂直方向の中央に配置されていません。

利点:それは目に見え、小さなデバイスでは、適度なサイズのモーダルが画面の大部分を占めるため、「非センタリング」はそれほどはっきりしません。

動作する理由:

BootstrapのレスポンシブCSSで画面サイズが小さい場合、画面が小さいデバイスの場合、。modal.fade.in 's' top 'が設定されます「自動」に。何らかの理由で、モバイルWebkitブラウザーは、「自動」割り当てを使用して垂直方向の配置を把握するのに苦労しているようです。そのため、固定値に戻すだけでうまく機能します。

モーダルは既にpostition:absoluteに設定されているため、値はドキュメントの高さではなく、ビューポートの高さを基準にしているため、ページの長さやスクロール先に関係なく機能します。

14
jlovison

niftylettuceによる解決策 in issue 21 は、すべてのモバイルプラットフォームのモーダルを修正しているようです...

9/1/12 UPDATE:修正はここで更新されました: Twitter bootstrap jquery plugins

(以下のコードは古いですが、まだ動作します)

// # Twitter Bootstrap modal responsive fix by @niftylettuce
//  * resolves #407, #1017, #1339, #2130, #3361, #3362, #4283
//   <https://github.com/Twitter/bootstrap/issues/2130>
//  * built-in support for fullscreen Bootstrap Image Gallery
//    <https://github.com/blueimp/Bootstrap-Image-Gallery>

// **NOTE:** If you are using .modal-fullscreen, you will need
//  to add the following CSS to `bootstrap-image-gallery.css`:
//
//  @media (max-width: 480px) {
//    .modal-fullscreen {
//      left: 0 !important;
//      right: 0 !important;
//      margin-top: 0 !important;
//      margin-left: 0 !important;
//    }
//  }
//

var adjustModal = function($modal) {
  var top;
  if ($(window).width() <= 480) {
    if ($modal.hasClass('modal-fullscreen')) {
      if ($modal.height() >= $(window).height()) {
        top = $(window).scrollTop();
      } else {
        top = $(window).scrollTop() + ($(window).height() - $modal.height()) / 2;
      }
    } else if ($modal.height() >= $(window).height() - 10) {
      top = $(window).scrollTop() + 10;
    } else {
      top = $(window).scrollTop() + ($(window).height() - $modal.height()) / 2;
    }
  } else {
    top = '50%';
    if ($modal.hasClass('modal-fullscreen')) {
      $modal.stop().animate({
          marginTop  : -($modal.outerHeight() / 2)
        , marginLeft : -($modal.outerWidth() / 2)
        , top        : top
      }, "fast");
      return;
    }
  }
  $modal.stop().animate({ 'top': top }, "fast");
};

var show = function() {
  var $modal = $(this);
  adjustModal($modal);
};

var checkShow = function() {
  $('.modal').each(function() {
    var $modal = $(this);
    if ($modal.css('display') !== 'block') return;
    adjustModal($modal);
  });
};

var modalWindowResize = function() {
  $('.modal').not('.modal-gallery').on('show', show);
  $('.modal-gallery').on('displayed', show);
  checkShow();
};

$(modalWindowResize);
$(window).resize(modalWindowResize);
$(window).scroll(checkShow);
4
Gil Birman

このコードを使用して、Bootstrapモーダルダイアログを開いたときに中央に配置します。これを使用している間、iOSで問題は発生していませんが、Androidで機能するかどうかはわかりません。

$('.modal').on('show', function(e) {
    var modal = $(this);
    modal.css('margin-top', (modal.outerHeight() / 2) * -1)
         .css('margin-left', (modal.outerWidth() / 2) * -1);
    return this;
});
2
Jeradan

確かに、上記のソリューションは試していませんでしたが、(最終的に)喜びのためにジャンプしました jschrのBootstrap-modalプロジェクト in Bootstrap 3(inにリンク)一番上の答え)。 jsは私に問題を与えていたので、私はそれを放棄しました(おそらく私のものはユニークな問題であったか、Bootstrap 2でうまく動作します)が、CSSファイル自体はAndroidのネイティブ2.3.4ブラウザでトリックを行うようです。

私の場合、これまでのところ、オーバーライドを使用する前に(準最適な)ユーザーエージェント検出を使用して、現代の携帯電話で期待される動作を許可しています。

たとえば、すべてのAndroid携帯電話バージョン3.x以下で完全なハックセットのみを使用する場合は、javascriptを使用してユーザーエージェントを検出した後にクラスに「oldPhoneModalNeeded」を追加し、jschrを変更できます。常に祖先として.oldPhoneModalNeededを持つブートストラップモーダルCSSプロパティ。

1

このプロパティをjavascriptでグローバルに追加できます。

if( navigator.userAgent.match(/iPhone|iPad|iPod/i) ) {
    var styleEl = document.createElement('style'), styleSheet;
    document.head.appendChild(styleEl);
    styleSheet = styleEl.sheet;
    styleSheet.insertRule(".modal { position:absolute; bottom:auto; }", 0);
 }
1
Hetdev

私にとっては、$('[data-toggle="modal"]').click(function(){});だけで問題ありません。

0

この問題に対する非常にハッキングされた解決策を見つけましたが、うまくいきます。モーダルを開くために使用されるクラスを(データターゲットで)リンクに追加し、Jqueryを使用して、そのクラスにクリックイベントを追加して、データターゲットを取得し、開くはずのモーダルを見つけます。次に、JavaScriptを介して開きます。私にとってはうまくいく。また、モバイルでのみ実行されるようにモバイルチェックを追加しましたが、これは必須ではありません。

$('.forceOpen').click(function() {
  var id = $(this).attr('data-target');
  $('.modal').modal('hide');
  $(id).modal('show');
});
0
Rockster160

主にNexus 7のモーダルの問題、モーダルは画面を下っていました

  .modal:before {
    content: '';
    display: inline-block;
    height: 50%; (the value was 100% for center the modal)
    vertical-align: middle;
    margin-right: -4px;
  }
0
gem007bd

私の解決策...

Ver jsfiddle

//Fix modal mobile Boostrap 3
function Show(id){
    //Fix CSS
    $(".modal-footer").css({"padding":"19px 20px 20px","margin-top":"15px","text-align":"right","border-top":"1px solid #e5e5e5"});
    $(".modal-body").css("overflow-y","auto");
    //Fix .modal-body height
    $('#'+id).on('shown.bs.modal',function(){
        $("#"+id+">.modal-dialog>.modal-content>.modal-body").css("height","auto");
        h1=$("#"+id+">.modal-dialog").height();
        h2=$(window).height();
        h3=$("#"+id+">.modal-dialog>.modal-content>.modal-body").height();
        h4=h2-(h1-h3);      
        if($(window).width()>=768){
            if(h1>h2){
                $("#"+id+">.modal-dialog>.modal-content>.modal-body").height(h4);
            }
            $("#"+id+">.modal-dialog").css("margin","30px auto");
            $("#"+id+">.modal-dialog>.modal-content").css("border","1px solid rgba(0,0,0,0.2)");
            $("#"+id+">.modal-dialog>.modal-content").css("border-radius",6);               
            if($("#"+id+">.modal-dialog").height()+30>h2){
                $("#"+id+">.modal-dialog").css("margin-top","0px");
                $("#"+id+">.modal-dialog").css("margin-bottom","0px");
            }
        }
        else{
            //Fix full-screen in mobiles
            $("#"+id+">.modal-dialog>.modal-content>.modal-body").height(h4);
            $("#"+id+">.modal-dialog").css("margin",0);
            $("#"+id+">.modal-dialog>.modal-content").css("border",0);
            $("#"+id+">.modal-dialog>.modal-content").css("border-radius",0);   
        }
        //Aply changes on screen resize (example: mobile orientation)
        window.onresize=function(){
            $("#"+id+">.modal-dialog>.modal-content>.modal-body").css("height","auto");
            h1=$("#"+id+">.modal-dialog").height();
            h2=$(window).height();
            h3=$("#"+id+">.modal-dialog>.modal-content>.modal-body").height();
            h4=h2-(h1-h3);
            if($(window).width()>=768){
                if(h1>h2){
                    $("#"+id+">.modal-dialog>.modal-content>.modal-body").height(h4);
                }
                $("#"+id+">.modal-dialog").css("margin","30px auto");
                $("#"+id+">.modal-dialog>.modal-content").css("border","1px solid rgba(0,0,0,0.2)");
                $("#"+id+">.modal-dialog>.modal-content").css("border-radius",6);               
                if($("#"+id+">.modal-dialog").height()+30>h2){
                    $("#"+id+">.modal-dialog").css("margin-top","0px");
                    $("#"+id+">.modal-dialog").css("margin-bottom","0px");
                }
            }
            else{
                //Fix full-screen in mobiles
                $("#"+id+">.modal-dialog>.modal-content>.modal-body").height(h4);
                $("#"+id+">.modal-dialog").css("margin",0);
                $("#"+id+">.modal-dialog>.modal-content").css("border",0);
                $("#"+id+">.modal-dialog>.modal-content").css("border-radius",0);   
            }
        };
    });  
    //Free event listener
    $('#'+id).on('hide.bs.modal',function(){
        window.onresize=function(){};
    });  
    //Mobile haven't scrollbar, so this is touch event scrollbar implementation
    var y1=0;
    var y2=0;
    var div=$("#"+id+">.modal-dialog>.modal-content>.modal-body")[0];
    div.addEventListener("touchstart",function(event){
        y1=event.touches[0].clientY;
    });
    div.addEventListener("touchmove",function(event){
        event.preventDefault();
        y2=event.touches[0].clientY;
        var limite=div.scrollHeight-div.clientHeight;
        var diff=div.scrollTop+y1-y2;
        if(diff<0)diff=0;
        if(diff>limite)diff=limite;
        div.scrollTop=diff;
        y1=y2;
    });
    //Fix position modal, scroll to top.    
    $('html, body').scrollTop(0);
    //Show
    $("#"+id).modal('show');
}
0
infinito84

この質問は非常に古いものですが、携帯電話のモーダルのUXを改善するためのソリューションを探しているときに、つまずく人もいます。

電話でのBootrsrapモーダルの動作を改善するためのライブラリを作成しました。

ブートストラップ3https://github.com/keaukraine/bootstrap-fs-modal

ブートストラップ4https://github.com/keaukraine/bootstrap4-fs-modal

0
keaukraine

OKこれで修正できます。今日は2012年9月5日に試しましたが、必ずデモをチェックしてください。

問題2130のniftylettuceによる解決策は、すべてのモバイルプラットフォームのモーダルを修正するようです...

2012年9月1日更新:修正はここで更新されました: Twitter bootstrap jquery plugins

ここに Demo へのリンクがあります

            title_dialog.modal();
            title_dialog.modalResponsiveFix({})
            title_dialog.touchScroll();
0
edgar