-
Notifications
You must be signed in to change notification settings - Fork 20
/
FullscreenBackgroundExample.html
52 lines (52 loc) · 1.84 KB
/
FullscreenBackgroundExample.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
<!DOCTYPE html>
<html lang="zh_cn">
<head>
<meta charset="utf-8" />
<title>FullscreenBackgroundExample</title>
<style>
*{margin:0;padding:0;}
html, body {
width: 100%;
height: 100%;
overflow: hidden;
}
</style>
<script type="text/javascript" src="js/swfobject.min.js"></script>
</head>
<body>
<object id="test-swf" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="100%">
<param name="movie" value="FullscreenBackgroundExample.swf" />
<param name="quality" value="high" />
<!-- <param name="wmode" value="transparent"> -->
<param name="allowFullScreen" value="true" />
<param name="allowScriptAccess" value="always" />
<param name="swfversion" value="6.0.65.0" />
<param name="menu" value="true" />
<param name="expressinstall" value="js/expressInstall.swf" />
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="FullscreenBackgroundExample.swf" width="100%" height="100%">
<!--<![endif]-->
<param name="quality" value="high" />
<param name="menu" value="true" />
<!-- <param name="wmode" value="transparent"> -->
<param name="allowScriptAccess" value="always" />
<param name="swfversion" value="6.0.65.0" />
<param name="allowFullScreen" value="true" />
<param name="expressinstall" value="js/expressInstall.swf" />
<div>
<h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
<p>
<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>
</p>
</div>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
<script type="text/javascript">
swfobject.registerObject("test-swf");
</script>
</body>
</html>