Открыть картинку во всплывающем модале - PullRequest
0 голосов
/ 11 декабря 2018

Я хотел бы получить вашу помощь для обработки изображений в моем HTML-шаблоне.Я использую Django 1.11.16, CSS3 и JavaScript.

id управляемый выглядит так: #myimg_id с id уникальным целочисленным значением для каждого изображения.Я отображаю изображения в своем HTML-шаблоне следующим образом:

<img class="popup_image" id="myimg_{{ element.publication.id }}" src="{{ element.publication.cover.url }}">

<div id="myModal2" class="modal2">
    <span class="close">&times;</span>
    <img class="modal2-content" id="imgmodal_{{ element.publication.id }}">
</div>

<script>
// Get the modal
var modal = document.getElementById('myModal2');

// Get the image and insert it inside the modal - use its "alt" text as a caption
var img2 = document.getElementById('myimg_{{element.publication.id}}');
console.log(img2);
var modalImg = document.getElementById("imgmodal_{{element.publication.id}}");
console.log(modalImg);
img2.onclick = function () {
modal.style.display = "block";
modalImg.src = this.src;
console.log(modalImg.src);
}

// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];

// When the user clicks on <span> (x), close the modal
span.onclick = function () {
modal.style.display = "none";
}
</script>

Я добавляю часть CSS с селектором атрибутов, чтобы обрабатывать динамические id:

<style>
    /* Style the Image Used to Trigger the Modal */
    img[id^="myimg"] {
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
    }

    img[id^="myimg"]:hover {
      opacity: 0.7;
    }

    /* The Modal (background) */
    .modal2 {
      display: none; /* Hidden by default */
      position: fixed; /* Stay in place */
      z-index: 1; /* Sit on top */
      padding-top: 100px; /* Location of the box */
      left: 0;
      top: 14%;
      width: 100%; /* Full width */
      height: 100%; /* Full height */
      overflow: auto; /* Enable scroll if needed */
      background-color: rgb(0, 0, 0); /* Fallback color */
      background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
    }

    /* Modal Content (Image) */
    .modal2-content {
      margin: auto;
      display: block;
      width: 80%;
      max-width: 700px;
      animation-name: zoom;
      animation-duration: 0.6s;
    }

    @keyframes zoom {
      from {
        transform: scale(0)
      }
      to {
        transform: scale(1)
      }
    }

    /* The Close Button */
    .close {
      position: absolute;
      top: 15px;
      right: 35px;
      color: #f1f1f1;
      font-size: 40px;
      font-weight: bold;
      transition: 0.3s;
    }

    .close:hover,
    .close:focus {
      color: #bbb;
      text-decoration: none;
      cursor: pointer;
    }

    /* 100% Image Width on Smaller Screens */
    @media only screen and (max-width: 700px) {
      .modal2-content {
        width: 100%;
      }
    }
  </style>

Когда я нажимаю на свою картинку, фон становится темным, появляется кнопка закрытия, но я не вижу изображение внутри моего модального окна.Я не знаю, где проблема.

Пример:

enter image description here

Большое вам спасибо!

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...