如何在调整窗口大小时调整 YouTube 播放器的大小
我想显示包含 YouTube 视频的弹出窗口。我的问题是当用户调整弹出窗口大小时如何调整 YouTube 播放器的大小?
弹出窗口 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>
通过 $_GET 变量接收 YouTube 视频 ID。
上面的代码不起作用,YouTUbe 播放器未调整大小。有什么我想念的吗?
I want to show Popup window contain YouTube video. My question is how to resize YouTube Player when user resize the Popup Window ?
Head section of Popup windows PHP/HTML code
<!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.
the code above didn't work, the YouTUbe Player is not resized. Is there something I miss ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尽管如此,为什么要重写整个对象 html 而不是更新对象的高度/宽度呢?
再想一想,为什么不将高度/宽度设置为 100% 呢?
Still, why rewrite the whole of the object html instead of updating the objects height/width?
on second thought, why not just set height/width to 100%?
我只是想念;符号
I just miss ; sign