在线客服
24小时免费咨询电话:18978941786
客服时间:上午9:30~下午6点
flash在网页全屏代码
收藏 分享 发布日期:2012-2-12 16:30:41 编辑:admin 文章来源: 点击率:
flash在网页全屏代码
<style type="text/css">
html {
height: 100%;
overflow: hidden;
}
#flashcontent {
height: 100%;
}
body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
<div id="flashcontent"></div>
<script type="text/javascript">
var so = new SWFObject("index.swf", "sotester", "100%", "100%", "8", "#000000");
so.addVariable("flashVarText", "this is passed in via FlashVars for example only");
so.addParam("scale", "noscale");
so.addParam("wmode", "window");
so.addParam("allowFullScreen", "true");
so.write("flashcontent");
</script>
