Fotorama: Как отменить полноэкранный режим, нажав за пределами изображения? - PullRequest
0 голосов
/ 28 марта 2019

Я хотел бы отменить Fotorama'a в полноэкранном режиме, щелкнув за пределами изображений. Fotorama позволяет выйти только из полноэкранного режима, нажав на кнопку fotorama__fullscreen-icon.

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
    fotoramaDefaults = {
      maxwidth: '100%',
      allowfullscreen: true,
      nav: 'thumbs',
      thumbwidth: '100',
      thumbheight: '100',
      thumbborderwidth: 0,
      thumbmargin: 3,
      click: false,
      swipe: false,
    };
</script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/fotorama/4.6.4/fotorama.js"></script>
<link  href="http://cdnjs.cloudflare.com/ajax/libs/fotorama/4.6.4/fotorama.css" rel="stylesheet">
<div class="fotorama">
  <a href="http://s.fotorama.io/1.jpg" data-thumb="http://s.fotorama.io/1.jpg"></a>
  <a href="http://s.fotorama.io/1.jpg" data-thumb="http://s.fotorama.io/1.jpg"></a>
  <a href="http://s.fotorama.io/1.jpg" data-thumb="http://s.fotorama.io/1.jpg"></a>
  <a href="http://s.fotorama.io/1.jpg" data-thumb="http://s.fotorama.io/1.jpg"></a>
</div>

1 Ответ

0 голосов
/ 10 апреля 2019
$('.fotorama').on('click', function (e, fotorama) {
    if ($(e.target).hasClass("fotorama__stage__frame")) {
        $('.fotorama').data('fotorama').cancelFullScreen();
    }
});
...