0

現在のウェブサイトに問題があります。このオンラインをホストすると、.SWF がページの上部に表示され、大まかに 1/4 をカバーし、下部にも 3/4 をカバーします。ズームインおよびズームアウトすると、ページの下半分が上半分をわずかに覆いますが、上半分はまだ表示されています。.SWF が 2 回埋め込まれているかのようです。これが私のコードです。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="author" content="Kush Kouture" />
<meta name="keywords" content="Kush Kouture" />
<meta name="description" content="Kush Kouture" />

<title>Kush Kouture</title>

<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript" src="swfaddress.js"></script>
<script type="text/javascript" src="swffit.js"></script>
<script type="text/javascript">
var flashvars = {};
flashvars.url_config = "xml/configuration_site.xml";
flashvars.initServices = true;
var params = {};
params.allowfullscreen = true;
params.allowScriptAccess = "always";
var attributes = {};
attributes.id = 'flashObject';
attributes.bgcolor = '#000000';

swfobject.embedSWF("flash/index.swf", "Alternative", "100%", "100%", "11.0.0", false, flashvars, params, attributes);
</script>

<style type="text/css">
/* hide from ie on mac \*/
html {
height: 100%;
overflow: hidden;
}

#flashcontent {
height: 100%;
}
/* end hide */

body {
height: 100%;
margin: 0;
padding: 0;
background-color: #ffffff;
}
p {

font-size: 10px;
font-family: Verdana;
line-height:17px;
color:#ffffff;

} 
.style1 {
font-size: 11px;
font-family: Verdana;
color:#ffffff;
text-transform:uppercase;
}
</style>

</head>
<body>

<div id="flashContent>
<object id="flashObject" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"           codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=11,0,0,0" width="100%" height="100%">
<param name="movie" value="flash/index.swf" />
<param name="wmode" value="transparent" />
<param name="width" value="100%" />
<param name="height" value="100%" />
<param name="scale" value="noscale" />
<object type="application/x-shockwave-flash" data="flash/index.swf" align=""      scale="noscale" wmode="transparent" width="100%" height="100%">
</object>
</object>
</div>

<div id="Alternative"> 
<p style="color:#999999">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Kush Kouture | You require the latest version of Adobe Flash Player in order to view this site. Please use the button below to download the latest version.</p>
<p><a href="http://get.adobe.com/flashplayer/"><img src="flash.jpg" alt="Get Adobe Flash player" /></a></p>
</div>

</body>
</html>

また、ページ タイトルが正しく表示されていることにも気付きましたが、その横に「不十分」な値が表示されています。

例えば。「ホームページ」である必要があり、「ホームページ未定義」と表示されます

上記の問題に関して提供できるヘルプを本当に感謝します。

4

2 に答える 2

1

問題の 1 つは、見積もりを適切に閉じていない可能性があります

<div id="flashContent>

する必要があります

<div id="flashContent">

ここにメニューコードが表示されません。それも投稿できますか?

于 2012-07-03T12:34:08.940 に答える
0

<object>タグとの両方で .swf を埋め込んだので、それは完全に理にかなっていますSWFObject。1 つだけ使用すると、.swf のインスタンスが 1 つだけ表示されます。

于 2012-07-03T13:12:58.940 に答える