1

因此,目前使用 pupunzi youtube 播放器脚本作为 DIV 背景并且一切正常,但加载视频需要一两秒钟,同时我希望在背景中显示图像,尝试使用 Z 值和不同的定位,但只能放在视频前面!所以本质上想要一个图像来替换当前存在的灰色,因为在当前场景中,灰色实际上是一个叠加层。

网址:http ://www.littlemountainmedia.uk

有问题的HTML:

    <section class="content-section video-section">
 <div class="pattern-overlay">
      <a id="bgndVideo" class="player" data-property="{videoURL:'http://youtu.be/A3PDXmYoF5U',containment:'.video-section', startAt:4, quality:'large', autoPlay:true, mute:true, opacity:1}">bg</a>
        <div class="container">
          <div class="row">
            <div class="col-lg-12">
                <h2>Welcome to Little Mountain Media</h2>  
                <h1>WE BELIEVE IN THE POWER OF VISUAL MEDIA</h1>
           </div>
             </div>
        </div>
  </div>
</section>

有问题的 CSS:

.video-section .pattern-overlay {
background-color: rgba(18, 18, 18, 0.15);
padding: 110px 0 32px;
min-height: 496px; 
/* Incase of overlay problems just increase the min-height*/
}

.video-section h1, .video-section h2{
text-align:center;
color:#fff;
}
.video-section h1{
      z-index: 1;
    font-family: "Lato","Helvetica Neue",Helvetica,Arial,sans-serif;
    margin: 0;
    text-shadow: 0px 0px 0px rgb(0, 0, 0);
    font-size: 5em;
}
.video-section h2{
      z-index: 1;
    font-family: "Lato","Helvetica Neue",Helvetica,Arial,sans-serif;
    margin: 0;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.6);
    font-size: 3em;
}
.video-section .buttonBar{
    display:none;

}
.player {font-size: 1px;}
4

2 回答 2

0

我查看了页面源代码,发现有一个带有 YTPOverlay 类的 div。这让我开始思考,为什么不将背景图像设置在新的叠加层上,并让用户 jQuery 在计时器上淡出图像(或者当 youtube 视频准备好时)。

CSS(意味着在某种父容器内对齐):

.imageOverlay{
    position:absolute;
    height:100%;
    width:100%;
    left:0;
    top:0;
    background-image: url("/media/hero.png");

}

如果您在 BG 视频之上还有其他元素,您可能还需要使用 Z-index。

JS:

setTimeout(function(){
        $('.imageOverlay').fadeOut('slow');
    }, 4500)

}

HTML:

        <div class="jumbotron"><div id="bgndVideo" class="player" data-property="{videoURL:'<?=$Company->layout['hero']['hero_url'];?>',containment:'.jumbotron', quality:'large',autoPlay:true, mute:true, startAt:0, opacity:1}"></div>
        <div class="imageOverlay"></div>
        <div class="video-container">
//CONTENT HERE
</div></div>

jumbotron 样式来自 twitter bootsrap。

希望这可以帮助!

于 2015-02-19T00:33:47.753 回答
0

您是否尝试过添加类似的内容:

.bgndVideo{
  background:url(http://placekitten.com/g/200/300);
  }

哪个应该为您的“视频”元素添加背景?

(会作为评论发布,但会丢失格式)

于 2015-01-20T17:02:56.693 回答