亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在html5中自定義video標簽實現海報與播放按鈕功能

發布時間:2021-05-22 16:20:01 來源:億速云 閱讀:308 作者:Leah 欄目:web開發

怎么在html5中自定義video標簽實現海報與播放按鈕功能?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

一、問題

1.默認播放按鍵不好看

2.設置自定義封面圖

以上這兩點都想自定義

二、思路

1.使用div把video標簽蓋住

2.div中顯示自定義的海報圖片與按鈕

三、步驟分解

1.海報圖片作為div的背景

注:無論是橫圖還是豎圖,都希望按原比例顯示在div內
css:

.yourDiv{
 background-color: black;
 height:20em;
 background-image: url('./images/timg.jpg');
 background-size: contain;
 background-repeat: no-repeat;
 background-position: center;
}

html

<div class="yourDiv"></div>

效果

怎么在html5中自定義video標簽實現海報與播放按鈕功能

豎圖:

怎么在html5中自定義video標簽實現海報與播放按鈕功能

橫圖:

2.插入自定義播放圖標

css

.yourDiv {
 background-color: black;
 height:20em;
 background-image: url('./images/timg.jpg');
 background-size: contain;
 background-repeat: no-repeat;
 background-position: center;
 
 display:flex;
 align-items: center;
}
.yourDiv img { 
 width:20%;
 margin-left: 40%;
}

html

<div class="yourDiv">
 <img src="./images/play.png">
</div>

效果

怎么在html5中自定義video標簽實現海報與播放按鈕功能

3.把div覆蓋到video標簽上

css

.yourDiv {
 background-color: black;
 height:20em;
 background-image: url('./images/timg.jpg');
 background-size: contain;
 background-repeat: no-repeat;
 background-position: center;
 
 display:flex;
 align-items: center;
 
 position: absolute;
 top: 0px;
 left: 0px;
 width: 100%;
}
.yourDiv img { 
 width:20%;
 margin-left: 40%;
}

.father {
 background-color: black;
 width:100%;
 height:16em;
 position: relative;
}

htm5

  <div class="father">
  <video id="video" controls="controls" autoplay="autoplay" style="width:100%;height:16em">
   <source src="./videos/v1.mp4" type="video/ogg" />
   <source src="./videos/v1.mp4" type="video/mp4" />
  </video>

  <div class="yourDiv">
   <img src="./images/play.png">
  </div>
 </div>

4.觸發播放方法

html

 <div class="father">
  <video id="video" controls="controls" autoplay="autoplay" style="width:100%;height:16em">
   <source src="./videos/v1.mp4" type="video/ogg" />
   <source src="./videos/v1.mp4" type="video/mp4" />
  </video>

  <div id="poster" class="yourDiv" onclick="play()">
   <img src="./images/play.png">
  </div>
 </div>

js

var video = document.getElementById("video");

function play(){
 document.getElementById("poster").style.display = "none";
 video.play();
}

怎么在html5中自定義video標簽實現海報與播放按鈕功能

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

菏泽市| 洛浦县| 资中县| 北辰区| 淄博市| 资阳市| 临沧市| 宁乡县| 长子县| 文昌市| 喀喇| 大安市| 台南市| 宁国市| 长顺县| 扬州市| 左贡县| 大石桥市| 上饶县| 尉犁县| 柏乡县| 泰来县| 额尔古纳市| 威海市| 平陆县| 大化| 睢宁县| 抚松县| 池州市| 大竹县| 新化县| 沈阳市| 扶绥县| 枞阳县| 手游| 东方市| 阿拉善左旗| 左云县| 桐梓县| 科尔| 枝江市|