PluginProbe
StreamCast – bring live radio to your site with a sleek player / 2.3.6
StreamCast – bring live radio to your site with a sleek player v2.3.6
2.4.5 2.4.4 trunk 1.0 1.1 2.0.0 2.1.10 2.1.2 2.1.4 2.1.5 2.1.8 2.2.1 2.2.3 2.2.4 2.2.5 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8 2.3.9 All 29 releases
streamcast / iframe.html

iframe.html in StreamCast – bring live radio to your site with a sleek player 2.3.6, at iframe.html

36 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <!DOCTYPE html>
2 <html lang="en">
3
4 <head>
5 <meta charset="UTF-8">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
7 <title>Document</title>
8 <script src="https://hosted.muses.org/mrp.js"></script>
9 <script>
10 function getQueryParam(param) {
11 const urlParams = new URLSearchParams(window.location.search);
12 return urlParams.get(param);
13 }
14 const playerData = window.top[getQueryParam("id")];
15 </script>
16 <style>
17 /* #MusesRadioPlayer-HTML5-player-0 {
18 margin: auto;
19 } */
20 body {
21 margin: 0;
22 width: inherit;
23 overflow: hidden;
24 }
25 </style>
26 </head>
27
28 <body>
29 <script type="text/javascript">
30 MRP.insert(playerData)
31 MRP.setTitle(playerData.title);
32 window.top[getQueryParam("id")] = null;
33 </script>
34 </body>
35
36 </html>