如何在特定大小的新浏览器窗口中打开Flash视频?

时间:2013-08-03 18:27:22

标签: html flash

有人可以为我提供一些HTML / JavaScript,让我可以执行以下操作:

当我点击链接时,它会:

  1. 打开一个新的浏览器窗口以播放特定大小的Flash视频(即640x480)
  2. 新的浏览器窗口将在计算机屏幕中居中。
  3. 如果我点击最大化窗口,它会调整全部大小以使用全屏。

1 个答案:

答案 0 :(得分:0)

第一个问题尝试这样

<!DOCTYPE html>
<html>
<head>
<script>
    function openWin()
    {
        myWindow=window.open('','','width=640,height=480');
        myWindow.document.write("<p>This is 'myWindow'</p>");
        myWindow.focus();
    }
</script>
</head>
<body>

    <a href="#" onclick="openWin()">click</a>

</body>
</html>

第二个问题请参见此帖子Open new window on center of screen with this javascript?

对于上一个问题,您可以在http://www.longtailvideo.com/blog/26517/using-the-browsers-new-html5-fullscreen-capabilities/

看到解决方案