rpg.html

来自「Flash写的小RPG游戏。。。。 # Archive D:ITsource_」· HTML 代码 · 共 37 行

HTML
37
字号
<html>
<head>
<script language="javascript">
nowplay = "";
function changesound(command, link) {
	if (command == "play") {
		if (nowplay != link) {
			bg.src = link;
			nowplay = link;
		}
	}
}

</script>
<SCRIPT LANGUAGE="VBScript"> 
on error resume next
Sub RPG_FSCommand(ByVal command, ByVal args)
    call changesound(command,args)
end sub 
</SCRIPT>
<title>RPG</title>
<bgsound id=bg loop="-1">
<style type="text/css">
body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
</style></head>
<body>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="100%" id="RPG">
  <param name="movie" value="RPG.swf">
  </object>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?