ziniulian2
4/29/2016 - 11:33 AM

网页嵌入flash播放器,播放视频文件

网页嵌入flash播放器,播放视频文件

<html>
	<head>
		<style type="text/css">
			html, body {
				padding: 0;
				margin: 0;
				height: 100%;
			}
			.playout {
				width: 50%;
				height: 50%;
			}
			.play{
				width: 100%;
				height: 100%;
			}
		</style>
	</head>
	<body>
		<div class="playout">
			<embed
				src="flvplayer.swf"
				class="play"
				type="application/x-shockwave-flash"
				allowFullScreen="true"
				FlashVars="vcastr_file=video.flv"
				quality="high"
				pluginspage="http://www.macromedia.com/go/getflashplayer"
			/>
		</div>
	</body>
</html>