我想在HTML中嵌入一個視頻。我試著用劇本來做。我注冊了路徑和腳本,但是在頁面上看不到視頻,盡管可以找到它,并且單擊視頻會在另一個窗口中打開。怎么了?
<main>
<div class="wrapper">
<section class="intro">
<div class="intro-wrap text-intro-wrap">
<h1 class="title">ПОБЕждай с нами</h1>
<p class="under-title-text">Присоединяйся к команде ПОБЕДителей.</p>
<a class="standart-button red-button">Хочу в команду ПОБЕДителей!</a>
</div>
<div class="intro-wrap">
<a href="video/video.mp4" style="display: block; width: 300px; height: 200px;" id="player"></a>
<script type="text/javascript">
flowplayer("player", "flowplay/flowplayer.swf");
</script>
</div>
</section>
</div>
你應該在HTML5中使用視頻標簽。
<video width="400" controls>
<source src="video/video.mp4" type="video/mp4">
</video>
我會好好工作的