Как вставить видео в текст с помощью HTML?

#html

#HTML

Вопрос:

Я пытался искать везде, но пока мне не повезло с тем, как добавить ссылку на видео в текст.

Я пытаюсь вставить видео в слово «Example», чтобы всякий раз, когда пользователь нажимал на это слово, видео появлялось в том же окне. Я представляю, что это должно работать как <a class="image-with-lightbox" href="/a/sample_picture.png"> <img src="/a/sample_picture.png" width="0">Example</a>

Любые советы приветствуются.

Комментарии:

1. Каков ваш уровень знакомства или опыта работы с HTML в целом? Где находится видео (YouTube? Самостоятельно размещенный?). Где будет отображаться этот HTML?

2. новичок. Я пытаюсь добавить видео, размещенное на Wistia. По сути, это статья, над которой я работаю в Zendesk. Я пытаюсь встроить (не уверен, правильно ли я использую слово) ссылку на видео в word.

3. Помогает ли это? support.zendesk.com/hc/en-us/community/posts/… — просто измените <img /> на <video> или <iframe> в зависимости от того, как работает Wistia.

Ответ №1:

Пример, который я получаю от w3schools с этими двумя ссылками:https://www.w3schools.com/howto/howto_css_modals.asp
https://www.w3schools.com/html/html5_video.asp

 window.onload = function init() {
  // Get the modal
  var modal = document.getElementById("myModal");

  // Get the link that opens the modal
  var link = document.getElementById("myLink");

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

  // When the user clicks the button, open the modal 
  link.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";
    }
  }
};  
 body {font-family: Arial, Helvetica, sans-serif;}

/* 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 {
  background-color: #fefefe;
  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;
}  
 <!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">

</head>
<body>

<h2>Modal Example</h2>

<!-- Trigger/Open The Modal -->
<a href="#" id="myLink">Open Modal</a>

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

  <!-- Modal content -->
  <div class="modal-content">
    <span class="close">amp;times;</span>
    <video width="400" controls>
        <source src="video_url_here.mp4" type="video/mp4">
        <source src="video_url_here.ogg" type="video/ogg">
        Your browser does not support HTML video.
    </video>
  </div>

</div>

</body>
</html>