- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
就像所附图片中所述,我需要在div“框”(黑色)中的一些文本(“标题”)下设置YouTube视频。
当然,就像普通的YouTube嵌入式视频一样,它仍然需要计算观看次数。
这是实际的代码(全页运行)。
我需要将视频放在#page00
框中。
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
* {
padding: 0;
margin: 0;
border: 0;
box-sizing: border-box;
}
html {
margin: auto;
height: 100%;
width: 100%;
}
body {
background: #fff;
color: #222;
font-family: Georgia, sans-serif;
font-weight: 400;
text-align: center;
margin: auto;
height: 100%;
width: 60%;
max-width: 1024px;
}
.container {
display: table;
margin: auto;
margin-bottom: 20px;
height: auto;
width: 100%;
background-position: center;
background-size: cover;
}
.content {
display: table-cell;
margin: auto;
vertical-align: middle;
}
.cover {
background-color: #362f2d;
color: #fff;
height: 60%;
}
.snippet {
background-color: #362f2d;
color: #fff;
height: 30%;
}
.hover .content {
background-color: rgba(54, 47, 45, 0.25);
}
#page00 h1 {
font-size: 70px;
line-height: 125%;
}
#page00 h2 {
font-weight: 400;
line-height: 125%;
}
h1,
h2 {
font-family: "Montserrat";
text-transform: uppercase;
}
h1 {
font-size: 50px;
font-weight: 700;
letter-spacing: -3px;
line-height: 100%;
}
h2 {
font-size: 20px;
font-weight: 400;
letter-spacing: -1px;
line-height: 250%;
}
p {
font-size: 16px;
font-weight: 300;
letter-spacing: 0;
line-height: 150%;
margin: auto;
margin-bottom: 2%;
width: 90%;
}
b {
font-weight: 700;
}
a {
color: inherit;
font-weight: 500;
text-decoration: none;
}
.text {
text-align: left;
}
img {
width: 100%;
}
#menu .name {
font-weight: 700;
}
#menu a {
font-family: "Montserrat";
font-size: 16px;
font-weight: 400;
margin: 1%;
padding-bottom: 1%;
padding-top: 5%;
}
#menu a:hover {
color: inherit;
}
#menu a {
display: inline-block;
vertical-align: middle;
transform: translateZ(0);
position: relative;
overflow: hidden;
}
<div id="menu" class="container">
<div class="content">
<a href="#" class="name">Matteo Rizzo</a>
<a href="#">menu 01</a>
<a href="#">menu 02</a>
<a href="#">menu 03</a>
</div>
</div>
<!--- I need to put the video under this div v v v ---->
<div id="page00" class="container cover hover">
<div class="content">
<h1>Headline</h1>
<h2>subtitle</h2>
</div>
</div>
<div id="page01" class="container">
<div class="content">
<h2>Subtitle</h2>
<p class="text">Lorem ipsum etcetera.</p>
</div>
</div>
最佳答案
编织: http://kodeweave.sourceforge.net/editor/#d230b9b3ddf5437ec3e9d7da128b5a18
编织:(针对您的示例)
http://kodeweave.sourceforge.net/editor/#8a72ed398f9d60ddd40576052ffeb4ac
Here is a Pure JS solution。它不使用YouTube,而是展示了这一概念。 (通过Dudley Storey)
要显示YouTube视频,我建议使用BigVideo.js或tubular插件(需要JQuery)。不幸的是,自2015年12月30日起,BigVideo.js项目不再处于积极开发中。
还有this pen by Krz Szzz,它使用JQuery和YouTube API(another source)将视频显示为div背景。
此外,还有“Use any YouTube Video as your Page Background”。 (此方法的唯一缺点是视频未静音)
要将YouTube视频嵌入为静音模式,请查看How do I automatically play a Youtube video (IFrame API) muted?。
以下是使用您提供的代码来显示YouTube视频作为标题背景的快速模型。如你所问。
// 2. This code loads the IFrame Player API code asynchronously.
var tag = document.createElement('script');
tag.src = "https://www.youtube.com/iframe_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
// 3. This function creates an <iframe> (and YouTube player)
// after the API code downloads.
var player;
function onYouTubeIframeAPIReady() {
player = new YT.Player('player', {
height: $('.resetframe').height(),
width: $('.resetframe').width(),
playerVars: {
autoplay: 1,
loop: 1,
controls: 0,
showinfo: 0,
autohide: 1,
modestbranding: 1,
vq: 'hd1080'},
videoId: '_Gd8mbQ3-mI',
events: {
'onReady': onPlayerReady
}
});
}
// 4. The API will call this function when the video player is ready.
function onPlayerReady(e) {
e.target.playVideo();
player.mute();
}
var done = false;
function stopVideo() {
player.stopVideo();
}
$(window).on('load resize', function() {
$('#player').css({
'width' : $('.resetframe').width(),
'height': $('.resetframe').height()
})
$('.heading').css('marginTop', - $('.resetframe').height())
})
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
/* Globals */
html, body {
height: 100%;
}
h1, h2 {
font-family: "Montserrat";
text-transform: uppercase;
}
h1 {
font-size: 50px;
font-weight: 700;
letter-spacing: -3px;
line-height: 100%;
}
h2 {
font-size: 20px;
font-weight: 400;
letter-spacing: -1px;
line-height: 250%;
}
p {
font-size: 16px;
font-weight: 300;
letter-spacing: 0;
line-height: 150%;
margin: auto;
margin-bottom: 2%;
width: 90%;
}
a {
color: inherit;
font-weight: 500;
text-decoration: none;
}
img {
width: 100%;
}
body {
color: #222;
font-family: "Montserrat", sans-serif;
font-weight: 400;
text-align: center;
margin: auto;
width: 60%;
max-width: 1024px;
}
/* Navigation */
.nav a {
display: inline-block;
vertical-align: middle;
transform: translateZ(0);
position: relative;
overflow: hidden;
font-family: "Montserrat";
font-size: 16px;
font-weight: 400;
margin: 1%;
padding-bottom: 1%;
padding-top: 5%;
}
.nav a:hover {
color: inherit;
}
.nav .name {
font-weight: 700;
}
/* Classes */
.table {
display: table;
margin-bottom: 20px;
width: 100%;
}
.cell {
display: table-cell;
vertical-align: middle;
}
.table p {
text-align: left;
}
#page00 h1 {
font-size: 70px;
line-height: 125%;
}
#page00 h2 {
font-weight: 400;
line-height: 125%;
}
/* Specifics */
.resetframe {
width: 100%;
}
.cover {
position: relative;
color: #fff;
background: #000;
}
.heading {
position: relative;
display: block;
background: #000;
background: rgba(0, 0, 0, 0.25);
padding-top: 1px;
}
/* variable classes */
.hide {
display: none;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="nav table">
<div class="cell">
<a href="#" class="name">Matteo Rizzo</a>
<a href="#page00">Page 1</a>
<a href="#page01">Penu 2</a>
<a href="#">Penu 3</a>
</div>
</div>
<!--- I need to put the video under this div ---->
<div id="page00" class="cover table">
<img class="resetframe hide" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUAAAACMCAYAAAANzXDRAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH3gkdERMPpzeviAAAAMVJREFUeNrtwYEAAAAAw6D5U9/gBFUBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADPALyqAAGMiCoVAAAAAElFTkSuQmCC">
<div id="player"></div>
<div class="cell heading">
<h1>Headline</h1>
<h2>subtitle</h2>
</div>
</div>
<div id="page01" class="table">
<div class="cell">
<h2>Subtitle</h2>
<p>Lorem ipsum etcetera.</p>
</div>
</div>
关于html - YouTube视频作为自适应 “box” div背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37092293/
是否有任何解决方案来禁用右键单击选项并从 Youtube 视频中删除右下角水印 Logo ?我在搜索 GOOGLE 后尝试过。谁能告诉我? 谢谢你。 最佳答案 试试 modestbranding范围:
我想使用 YouTube API (v3) 来启用仅音乐轨道的搜索(没有猫或藤蔓或任何其他非音乐视频)。我查看了 API Explorer 和文档以获取有关该问题的任何指示,但找不到任何有用的信息。
我需要为网站使用YouTube视频缩略图的maxresdefault版本,但是在开发实现此目的的代码后,我发现并非所有视频都具有这些缩略图,尽管这些视频均为1080p。 有没有一种方法可以自动为我的所
我想通过“iframe”嵌入youtube视频,但YouTube在我国禁止使用,建议我如何在我的网站上嵌入视频! [1]:以下图片显示了在我的国家/地区无法访问youtube 最佳答案 该视频将被嵌入
我正在为myBB使用一个名为Profile Music Plugin的插件,可以在此处找到http://community.mybb.com/mods.php?action=view&pid=75 我
Youtube IFRAME API中是否有可以执行命令的功能,例如在播放的视频结尾处打开网站? (我相信有一个功能可以在旧的Java API下执行此操作,但该功能已于去年弃用。) 最佳答案 您可以引
我试图在Videos.insert和Videos.update查询中设置3d尺寸标志。但是标志不会改变。 更新查询示例: 请求: PUT https://www.googleapis.com/yout
使用此获取评论 评论主题:列表 GET https://www.googleapis.com/youtube/v3/commentThreads?part=snippet { "error": {
最近,我尝试使用OEmbed服务通过播放列表查询参数获取视频网址的iframe代码,但是OEmbed为我们提供了与我要求的视频不同的iframe代码。 这是带有播放列表查询参数的视频网址: https
我正在使用此代码: https://www.googleapis.com/youtube/v3/search?q=global+warming&part=id&maxResults=50&key=MY
我有一个LiveBroadcast,并且将来会添加一个scheduledStartTime。据我所知,这次测试不会对LiveBroadcast的整体状态产生影响,即广播是否具有准备就绪/测试的life
YouTube API是否支持在特定时间后关闭浏览器的参数? 这需要使用链接在不同位置共享来推广促销视频。视频播放结束后关闭浏览器。 最佳答案 您可以使用Youtube API监控视频是否播放完毕,然
如果没有表单上的透明面板,YouTube Player将可以正常播放视频,或者可以全屏播放视频,透明面板中有一些图像没有什么特别的。如果我取出透明面板,则YouTube播放器会按需工作,并嵌入到应用程
我正在通过Google进行身份验证,以尝试获取YouTube分析数据,但我的问题是我不知道在查询YouTube时如何向您填充参数 在这里,我正在提供一项新服务:然后尝试查询它 我不确定要在“ids”参
我想添加youtube视频列表,但不添加视频播放器。所以我需要的是 视频标题 视频缩略图 视频时长 我以某种方式设法通过使用此http://img.youtube.com/vi/4wew2uWoARw
我正在使用youtube api和python库gdata 我遵循了文档,但似乎没有出路。 问题是 - How do i get the size of the youtube video fil
使用Youtube API,我如何获得评论或顶过youtube视频的用户ID /处理列表? 提前致谢 最佳答案 在这里,您可以了解如何使用YouTube API v2(v3尚不支持此注释)获取评论:h
我正在为所有相关数据构建一个仪表板(以php为单位),我还想在YouTube“稍后观看”播放列表中显示我的商品数量。 我知道无法使用YouTube API来解决这个问题,但是也许有人想出一种解决方法?
我尝试使用YouTube API,但存在引号问题。 SearchResource.ListRequest searchListRequest = yt.Search.List("sni
我想为我的Android应用程序的用户构建视频推荐器。我有Google OAuth可以登录我的应用程序。我可以获取有关我的应用程序用户在YouTube上观看的视频的数据吗? 最佳答案 v3 API分为
我是一名优秀的程序员,十分优秀!