JQuery,淡入youtube iframe嵌入

Ton*_*niq 6 youtube iframe jquery

我试图淡入youtube iframe嵌入,但它只适用于IE9,所有其他最新的浏览器(Safari,Opera,Chrome,Firefiox)它没有.iframe立即显示为将不透明度设置为0.

我在Windows上.

我错了什么?

ps:这适用于Vimeo youtube iframe嵌入.

的jsfiddle:

http://jsfiddle.net/jgtSS/26/

Rob*_*b W 3

出于安全原因,当 iframe/最近层的 Alpha 通道级别(不透明度/背景)降低时,内联框架将变得完全可见。因此,即使不透明度设置为0.99999,框架也会显示。

我为这个问题创建了一个解决方案:创建两个具有相同大小的图层,并将它们添加到 iFrame 父级之后。

  1. 将背景附加到第一张图片,这是视频的预览
  2. 将第二个div的背景设置为页面的背景,例如white

然后,将第二个 DIV 设置为不透明度 0 的动画。第一张图像的背景变得更加明显。在动画结束时,使用回调函数隐藏第一个 div:

要允许用户在动画期间激活视频,请将单击事件处理程序绑定到 DIV,这会立即隐藏图层,并调用playVideo内嵌视频的方法。

要调用该playVideo方法,您需要对嵌入视频的引用。由于您尚未使用 YouTube 视频 API 创建视频,因此无法使用全局变量来访问视频。不久前,我创建了一个函数来调用嵌入式视频上的方法。
阅读:YouTube iframe API:如何控制 HTML 中已有的 iframe 播放器?

最终代码

我在小提琴上创建了一个实例:http: //jsfiddle.net/jgtSS/34/。完整的代码也如下所示。

<html><head>
<style>
#holder, #ID-of-first-div, #ID-of-second-div{
    position:absolute;
    width:320px;
    height:240px;
    top:0px;
    left:0px;
}
#ID-of-first-div, #ID-of-second-div {
    background: #FFF;
}
#btn1{
    position:absolute;
    background:#09C;
    width:40px;
    height:40px;
    top:250px;
    left:0px;
      
}
</style>
<script type="text/javascript">
$(window).load(function() {
    $('#btn1').click(function(){
        var vid_id = $('#player').get(0).src.match(/embed\/([^?]+)/)[1];
        var vid_bg = 'http://i2.ytimg.com/vi/'+vid_id+'/hqdefault.jpg';
        $('<img>').attr("src", vid_bg).css({width:'100%',height:'100%',border:'none'}).appendTo('#ID-of-first-div');
        $('#ID-of-second-div').animate({opacity: 0 }, 3000, function(){
            $('#ID-of-first-div').hide();
        });
        var both = $('#ID-of-first-div, #ID-of-second-div');
        both.click(function(){
            both.hide();
            callPlayer('player', 'playVideo');
        });
    });
});
/*
 * @author       Rob W (/sf/ask/521050491/#7513356)
 * @description  Executes function on a framed YouTube video (see previous link)
 *               For a full list of possible functions, see:
 *               http://code.google.com/apis/youtube/js_api_reference.html
 * @param String frame_id The id of the div containing the frame
 * @param String func     Desired function to call, eg. "playVideo"
 * @param Array  args     (optional) List of arguments to pass to function func*/
function callPlayer(frame_id, func, args){
    if(!document.getElementById(frame_id)) return;
    args = args || [];

    /*Searches the document for the IFRAME with id=frame_id*/
    var all_iframes = document.getElementsByTagName("iframe");
    for(var i=0, len=all_iframes.length; i<len; i++){
        if(all_iframes[i].id == frame_id || all_iframes[i].parentNode.id == frame_id){
           /*The index of the IFRAME element equals the index of the iframe in
             the frames object (<frame> . */
           window.frames[i].postMessage(JSON.stringify({
                "event": "command",
                "func": func,
                "args": args,
                "id": 1/*Can be omitted.*/
            }), "*");
        }
    }
}
</script>
</head><body>
<div id="holder">
   <iframe id="player" type="text/html" width="320" height="240"
  src="http://www.youtube.com/embed/u1zgFlCw8Aw?wmode=transparent?enablejsapi=1"
  frameborder="0"></iframe>
</div>
<div id="ID-of-first-div"></div>
<div id="ID-of-second-div"></div>
      
<div id="btn1"></div>
</body></html>
Run Code Online (Sandbox Code Playgroud)