Bootstrap 4 модальный отключен на iOS 8.1 - PullRequest
0 голосов
/ 25 октября 2018

Проблема

Модал Bootstrap отключен (вы должны прокрутить вверх, чтобы открыть его) при отображении на iPhone 5 iOS 8.3 и iPad Retina 8.1 Иногда, если клавиатура поднята, при закрытии она открывает модал.но это не имеет смысла, когда вы смотрите на модальное.

Я тестировал на iOS 8.4, 8.3, 8.1, и кажется, что проблема возникает на всех устройствах под управлением iOS <9.Bootstrap не поддерживает эти версии, и я не смог найти справку. </p>

Код

<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">

 <title>Hello, world!</title>
 </head>
  <body>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalCenter">
  Launch demo modal
</button>

<!-- Modal -->
<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
  <div class="modal-dialog modal-dialog-centered" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <h5 class="modal-title" id="exampleModalCenterTitle">Modal title</h5>
        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
          <span aria-hidden="true">&times;</span>
        </button>
      </div>
      <div class="modal-body">
        <input autofocus/>
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>
    </div>
  </div>
</div>
  <!-- Optional JavaScript -->
  <!-- jQuery first, then Popper.js, then Bootstrap JS -->
  <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
 <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
  <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
  </body>
 </html>

Что я сделал

  • отключен эффект затухания
  • переместить модальное тело в верхнюю часть экрана при фокусировке ввода

Проблемы, на которые я смотрел:

https://github.com/angular-ui/bootstrap/issues/967

Проблема с начальной загрузкой приSafari / iOS / iPhone

https://github.com/twbs/bootstrap/issues/14839

https://github.com/twbs/bootstrap/issues/20117

https://github.com/twbs/bootstrap/issues/16944

Демонстрационная версия ошибки

  • используйте устройство или эмулятор iOS (<9), если можете, и посетите официальные документы BS Modal <a href="https://getbootstrap.com/docs/4.1/components/modal/#vertically-centered" rel="nofollow noreferrer">https://getbootstrap.com/docs/4.1/components/modal/#vertically-centered
  • Simple BS модальное перо

скриншоты

enter image description here

...