窗口调整大小时如何调整YouTube播放器的大小

时间:2022-05-28 14:47:01

I want to show Popup window contain YouTube video. My question is how to resize YouTube Player when user resize the Popup Window ?

我想显示弹出窗口包含YouTube视频。我的问题是当用户调整弹出窗口大小时如何调整YouTube播放器的大小?

Head section of Popup windows PHP/HTML code

弹出窗口的PHP / HTML代码的头部分

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Wavin Video</title>

<script src="jquery-1.4.1.min.js" type="text/javascript"></script>
<script type="text/javascript" charset="utf-8">

$(document).ready(function(){

    //If the User resizes the window
    //$(window).bind("resize", resizeWindow);
    $(window).resize(resizeWindow).resize()
    function resizeWindow( e ) {
        var target = "#youtubebox2";
        var newWindowHeight = $(window).height();
        var newWindowWidth  = $(window).width();

        console.log("Width : "+newWindowWidth);
        console.log("Height: "+newWindowHeight);
        console.log("---------");

        $(target).html("<object width=\""+newWindowWidth+"\" height=\""+newWindowHeight+"\" id=\"youtubebox\"><param name=\"movie\" value=\"http://www.youtube.com/v/<?php echo $_GET['filename'];?>\"></param><param name=\"allowFullScreen\" value=\"true\"></param><param name=\"allowscriptaccess\" value=\"always\"></param><embed src=\"http://www.youtube.com/v/<?php echo $_GET['filename'];?>\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\""+newWindowWidth+"\" height=\""+newWindowHeight+"\"></embed></object>");
    }

});

</script>

</head>
<body>
<div align="center" style="padding:6px 0px 0px 0px;background-color: #ccc;" id="youtubebox2">

<object width="480" height="385" id="youtubebox">
<param name="movie" value="http://www.youtube.com/v/<?php echo $_GET['filename'];?>"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed src="http://www.youtube.com/v/<?php echo $_GET['filename'];?>" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385">
</embed>
</object>

</div>
</body>
</html>

the page receive youtube video ID through $_GET variable.

该页面通过$ _GET变量接收youtube视频ID。

the code above didn't work, the YouTUbe Player is not resized. Is there something I miss ?

上面的代码不起作用,YouTUbe Player没有调整大小。有什么我想念的吗?

2 个解决方案

#1


1  

Still, why rewrite the whole of the object html instead of updating the objects height/width?

仍然,为什么要重写整个对象html而不是更新对象的高度/宽度?

$("object, embed").height($(window).height());
$("object, embed").width($(window).width());

on second thought, why not just set height/width to 100%?

第二个想法,为什么不将高度/宽度设置为100%?

#2


1  

I just miss ; sign

我只想念标志

#1


1  

Still, why rewrite the whole of the object html instead of updating the objects height/width?

仍然,为什么要重写整个对象html而不是更新对象的高度/宽度?

$("object, embed").height($(window).height());
$("object, embed").width($(window).width());

on second thought, why not just set height/width to 100%?

第二个想法,为什么不将高度/宽度设置为100%?

#2


1  

I just miss ; sign

我只想念标志