forked from github/game-off-2013
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
75 lines (72 loc) · 2.63 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!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" lang="en" xml:lang="en">
<head>
<title>Unity index.swf</title>
<style type="text/css">
body
{
text-align: center;
}
#content {
width: 750px;
margin-left: auto;
margin-right: auto;
height: 600px;
}
#container
{
position: absolute;
top: 50%;
margin-top: -300px;/* half of #content height*/
left: 0;
width: 100%;
text-align: left;
}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript">
swfobject.registerObject("unityPlayer", "11.2.0");
</script>
</head>
<body>
<div id="container">
<div id="content">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="750" height="600" id="unityPlayer">
<param name="movie" value="index.swf" />
<param name="scale" value="noscale" />
<param name="wmode" value="direct" />
<param name="bgcolor" value="#ffffff" />
<param name="devicefont" value="false" />
<param name="swliveconnect" value="false" />
<param name="allowfullscreen" value="true" />
<param name="allowFullScreenInteractive" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="allownetworking" value="all" />
<param name="menu" value="false"/>
<param name="flashvars" value="unitydebug=false&deeptrace=false" />
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="index.swf" width="750" height="600">
<param name="scale" value="noscale" />
<param name="wmode" value="direct" />
<param name="bgcolor" value="#ffffff" />
<param name="devicefont" value="false" />
<param name="swliveconnect" value="false" />
<param name="allowfullscreen" value="true" />
<param name="allowFullScreenInteractive" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="allownetworking" value="all" />
<param name="menu" value="false"/>
<param name="flashvars" value="unitydebug=false&deeptrace=false" />
<!--<![endif]-->
<a href="http://www.adobe.com/go/getflashplayer">
<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
</a>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
</div>
</div>
</body>
</html>