gpt4 book ai didi

css - 如何使 html5 视频海报图像透明以在视频未播放时看到背景图像

转载 作者:行者123 更新时间:2023-11-28 02:26:50 27 4
gpt4 key购买 nike

我正在寻找为 html5 视频获取透明海报图像的解决方案。

我有一个页面,其背景图片占满页面的整个宽度(例如 1920x600)。我只想在这张背景图片的中间显示视频播放按钮。视频和背景图片具有不同的纵横比。按下播放按钮后,视频应以正确的宽高比显示在背景图片上。

作为 html5 视频播放器,我使用 Plyr .

这是播放器的实际实现:

   <style>
.container_plyr_teaser {
padding: 16px 0px 0px 0px;
max-width: 1000px;
margin: auto;
}
.plyr {
border-radius: 15px;
}
.plyr--stopped .plyr__controls {
opacity: 0;
pointer-events: none;
}
</style>

<div class="container_plyr_teaser">
<video class="js-player" controls playsinline preload="none" id="player11" data-plyr-config='{"volume": 0.3, "resetOnEnd": true, "enabled": true, "storage": { "enabled": false }, "quality": { "default": 720 } }'>
<source src="wolken_360p.mp4" type="video/mp4" size="360">
<source src="wolken_720p.mp4" type="video/mp4" size="720">
<source src="wolken_1080p.mp4" type="video/mp4" size="1080">
</video>
</div>

我的第一个想法是使用透明海报图像 poster="Wolken_Poster_transparent_16x9.png" 产生黑色视频播放器。

Using a transparent poster image results in a black video player

我的第二个想法是使用背景图片的精确剪切作为视频海报图像。 这看起来符合要求,但仅适用于精确的分辨率。

exact cutout of the background picture as video poster

如果浏览器窗口的分辨率错误,您将在视频海报图像和背景图像之间出现不美观的重叠。

unattractive overlap

另一种解决方案的想法?

最佳答案

我的解决方案如下所示:

<!-- generate an extra button to start the video -->    
<button id="button_teaser" onclick="playPause()">Play</button>

<video class="js-player" poster="poster.jpg" controls playsinline preload="none" id="video_teaser" data-plyr-config='{"volume": 0.3, "resetOnEnd": true, "enabled": true, "storage": { "enabled": false }, "quality": { "default": 720 } }'>
<source src="video_360p.mp4" type="video/mp4" size="360">
<source src="video_720p.mp4" type="video/mp4" size="720">
<source src="video_1080p.mp4" type="video/mp4" size="1080">
</video>

<!-- hide video -->
<script>
$('#video_teaser').hide();
</script>

<!-- after clicking the generated play button, hide play button and show video -->
<script>
$(document).ready(function(){
$('#button_teaser').click(function(){
$('#video_teaser').show();
$('#button_teaser').hide();
$('#video_teaser').get(0).play();
});
});
</script>

<!-- after playing video automatically hide video and show play button again -->
<script>
$(document).ready(function(){
$('#video_teaser').on('ended',function(){
$('#video_teaser').hide();
$('#button_teaser').show();
});
});
</script>

关于css - 如何使 html5 视频海报图像透明以在视频未播放时看到背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53447661/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com