在線客服
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>