我想知道在加载视频之前是否可以看到Youtube视频缩略图?
这是我现在所拥有的一个例子:
<html>
<head>
<style>
.video-background {
position: fixed;
top: 0; right: 0; bottom: 0; left: 0;
z-index: -99;
}
.video-foreground,
.video-background iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
@media (min-aspect-ratio: 16/9) {
.video-foreground { height: 300%; top: -100%; }
}
@media (max-aspect-ratio: 16/9) {
.video-foreground { width: 300%; left: -100%; }
}
</style>
</head>
<body>
<div class="video-background">
<div class="video-foreground">
<iframe src="https://www.youtube.com/embed/PR97m89_s4c?controls=0&showinfo=0&rel=0&autoplay=1&loop=1&playlist=PR97m89_s4c" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</body>
</html>
https://codepen.io/jacksonjack/pen/VypELM
它会加载视频,但加载时的前2-3秒是黑屏。
建议?
答案 0 :(得分:1)
您应该使用一些JS代码来阻止加载时间,如5秒钟后显示视频...在打开加载的视频时添加淡入淡出并完成:)