您的位置:首页 > Web前端 > HTML

Flash在浏览器中全屏,并且隐藏浏览器滚动条

2014-06-10 08:49 211 查看
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><meta http-equiv="X-UA-Compatible" content="IE=7" /><title>内蒙古</title><meta content="内蒙古" name="keywords" /><meta content="内蒙古" name="description" />
<style type="text/css">
html, body, object, div        {
width:100%;
height:100%;
/*display:block;*/
}
html        {
/* hides the browser's scrollbars */
overflow:hidden;
}
body        {
margin:0;
padding:0;
}
</style>
</head>
<body>
<div>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"
width="100%" height="100%">
<param name="movie" value="index.swf">
<param name="quality" value="high">
<param name="wmode" value="transparent">
<embed src="index.swf" width="100%" height="100%" quality="high"
pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" wmode="transparent">
</embed>
</object>

</div>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息