Ben Popup pencere YouTube video içeren göstermek istiyorum. Benim soru kullanıcı Popup Pencere yeniden boyutlandırmak zaman YouTube Player'ı yeniden boyutlandırmak nasıl?
Pop-up pencereleri PHP / HTML kodunun Baş bölümü
<!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>
sayfa $ _GET değişkeni ile youtube video kimliği alırsınız.
Yukarıdaki kod işe yaramadı, Youtube Player boyutlandırılır değil. Ben özledim bir şey var mı?