我有一个闪存按钮,保存到146W 69H的SWF文件中。我已经加倍检查了闪光灯,这是实际尺寸。但是,当我在浏览器上获取文件时,它会缩小到53W和14H。
目前我把它放在一个无序列表中,但是如果我把它移到ul之外,它仍然会缩小。我尝试在对象参数上设置缩放而没有不同的结果,但没有一个使文本成为实际大小。
HTML main:
$sublinks = "<li><object width='130px' height='100px' data='pics/links/news.swf'></object></li>";
HTML包含设计:
<html>
<head>
<title>
$titleP - 3cstudios
</title>
<link $cssed rel="stylesheet" type="text/css">
</head>
<body>
<div class='wrapper'>
<div class='left'>
<ul class='subLinks'>
$sublinks
</ul>
</div>
<div class="top">
和CSS:
.left{
margin-left:25px;
margin-right:auto;
margin-top:20px;
width:175px;
height:1873px;
background-image:url('../pics/leftMenue.png');
float:left;
background-repeat:no-repeat}
.subLinks{
margin-top:180px;
margin-left:11px;
background-color: red; //used it to check corect size of area.
height:1600px;
width: 113px;}