0

我正在制作一个扩展程序,当您单击该图标时,会弹出一个显示http://html5.grooveshark.com/并播放音乐的弹出窗口。我希望能够让它在后台运行,这样音乐就会播放,即使在这个人点击离开弹出窗口之后也是如此。如果我使用下面的代码将“default_popup”设置为 HTML 文件,它会显示 Grooveshark 并播放音乐,但在弹出窗口关闭后停止播放音乐。如何让它在后台继续播放音乐?

代码(显示 Grooveshark.com)

<!DOCTYPE html>
<html>

<style type="text/css">
        body {
             width: 500px;
             height: 300px;
             }
</style>

<body>


<iframe src="http://html5.grooveshark.com/" width="100%" height="500" frameborder="0"     scrolling="yes"></iframe>

</body>

</html>
4

2 回答 2

0

Just create a background.html and place your code in there. You can check that it is playing by setting an autoplay on your source.

Then, you just have to embed your background.html in your popup.html!

So, your call in the popup would basically be:

<iframe src="path/to/background.html"></iframe>
于 2014-11-21T23:24:36.810 回答
0

从始终运行的背景页面播放它,或者打开一个包含 iframe 的无边框小窗口。

于 2013-10-09T18:41:28.187 回答