我很擅长开发(这是我的第一个项目,我正在学习),所以可能会有一个非常简单的答案!
我正在创建一个用于广播电台的Android应用程序,使用Appmobi XDK用HTML编写。该站使用shoutcast地址,但我知道android很难处理这个,所以我将shoutcast IP嵌入到我在网上找到的flash播放器模板div中。但是,我不能让div改变HTML页面上的位置,它总是保持在左上角或者消失。我尝试使用样式TOP:LEFT等以及对齐:中心,两者都不起作用。所以我想知道有没有人知道如何将它移到我想要的页面上。
我已经为下面的div和代码提供了HTML。如果有人知道如何解决这个问题,我将非常感激!谢谢!
"<div id="container"> <a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this player.
<a href="http://www.shoutcheap.com/shoutcast/">shoutcast server hosting</a>
<a href="http://www.shoutcheap.com/icecast/">icecast server hosting</a></div>
<script type="text/javascript" src="http://www.shoutcheap.com/flashplayer/swfobject.js"></script>
<script type="text/css" style= "TOP:700; LEFT:250; ">
var s1 = new SWFObject("http://www.shoutcheap.com/flashplayer/player.swf" ,
"ply","250","50","9","#FFFFFF");
s1.addParam("allowfullscreen","true");
s1.addParam("allowscriptaccess","always");
s1.addParam("flashvars",
"file=http://50.7.244.222:10074/;stream.nsv&type=mp3&volume=50&autostart=true");
s1.write("container");"
答案 0 :(得分:0)
试试这个风格
position: absolute;
left: 50%;
top: 700px; // distance from the top of the page
margin-left: -125px; // subtract half the width of the document to align center