Модальный с видео - PullRequest
       7

Модальный с видео

0 голосов
/ 29 октября 2018

Я пытаюсь сделать модальный с видео, которое появляется после нажатия на кнопку. Когда я пытаюсь записать видео с жесткого диска, звук начинается в момент запуска веб-сайта. Теперь, когда я ставлю видео с YouTube, он не работает вообще ... Я взял коды из разных мест и соединил их, потому что я новичок ... Пожалуйста, помогите!

// Get the modal
var modal = document.getElementById('myModal');

// Get the button that opens the modal
var btn = document.getElementById("myBtn");

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

// When the user clicks the button, open the modal 
btn.onclick = function() {
    modal.style.display = "block";
}

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

// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
    if (event.target == modal) {
        modal.style.display = "none";
    }
}
/* The Modal (background) */
.modal {
    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: 0;
    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.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
 
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
<h2>Modal Example</h2>

<!-- Trigger/Open The Modal -->
<button id="myBtn">Open Modal</button>

<!-- The Modal -->
<div id="myModal" class="modal">

  <!-- Modal content -->
  <div class="modal-content">
    <span class="close">×</span>
    <iframe width="640" height="480" controls="controls" type="video/mp4" autoplay="false" preload="none"><video width="1000" height="500" src="https://www.youtube.com/watch?v=uOsGx25HvmI" frameborder="0"></video></iframe>
  </div>
</div>

1 Ответ

0 голосов
/ 29 октября 2018

С Поддержка YouTube :

Вставить видео

  1. На компьютере перейдите к видео YouTube, которое хотите встроить.
  2. Под видео нажмите «Поделиться».
  3. Нажмите Вставить.
  4. Из появившегося окна скопируйте код HTML.
  5. Вставьте код в HTML своего блога или веб-сайта.

Вы заметите, что URL должен быть другим. Вместо:

https://www.youtube.com/watch?v=uOsGx25HvmI

Это будет:

https://www.youtube.com/embed/uOsGx25HvmI

Полный код:

<iframe width="560" height="315" src="https://www.youtube.com/embed/uOsGx25HvmI" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>

Что касается проблемы со звуком при воспроизведении видео при загрузке страницы, вы пытаетесь избегать autoplay выполнения autoplay="false". От MDN документы :

Чтобы отключить автозапуск видео, autoplay="false" не будет работать; видео будет воспроизводиться автоматически, если атрибут вообще присутствует в теге <video>. Чтобы удалить автозапуск, атрибут должен быть полностью удален.

...