- 積分
- 1886
- 金幣
- 8 個(gè)
- 社區(qū)幣
- 0 元
已臻大成
- 貢獻(xiàn)
- 13 點(diǎn)
- 金幣
- 8 個(gè)
|
如視頻鏈接
或者
[mp4]視頻鏈接[/mp4]
怎么為視頻添加本地或者遠(yuǎn)程圖片為視頻封面,避免視頻未播放時(shí)黑乎乎的
1 貢獻(xiàn)最佳答案
把你后臺的mp4編輯器代碼修改為:
- <div align="center">
- <video width="854" controls style="max-width:100%" allowfullscreen controls="controls" poster ="{1}" >
- <source src="{2}" type="video/mp4" />
- <source src="{2}" type="video/ogg" />
- 您的瀏覽器不支持HTML5視頻。
- <div id="poster" class="poster" />
- <img class="poster" />
- </div>
- <style>
- /* 圖片尺寸 */
- .poster img {
- width: 100% !important;
- height: 100% !important;
- object-fit: cover;
- }
- </style>
- </video>
- </div>
復(fù)制代碼
參數(shù)個(gè)數(shù): 2
參數(shù)提示語:
封面路徑
視頻路徑
|
|