1

我从我的数据库中检索嵌入代码视频。但是,在 db 中,它们是 650 x 650。我想要的是使它们变小。

使用模板精简版标签,我试过这个

<tr>
    <td>Videos</td>
    <td>
        <div height="100" width =" 200" /> 
            {foreach value=movieF from=$movieFragman}
                {$movieF.embedCode} 
            {/foreach}
        </div>
    </td>                
</tr>

div不起作用。我能为此做些什么?

使用下面的代码,我设置了 div 的宽度高度

   </style><style type="text/css">
    {literal}
    div.embed
    {
    width:200px;
    height:100px;
    }

    {/literal}
    </style>

有时候是这样的.. 在此处输入图像描述

4

1 回答 1

1

这是工作

<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>
    $(document).ready(function(){
       $('.test embed').attr('height','');
       $('.test embed').height(600);
       $('.test embed').attr('width','');
       $('.test embed').width(600);
    });
</script>
</head>
<body>
    <div class="test"> 
        <embed src="http://www.abc.com/images/player2.swf?video=173350&amp;movieid=1500%22" wmode="window" bgcolor="#000000" allowfullscreen="true" scale="noScale" width="640" height="483" type="application/x-shockwave-flash">
    </div>
</body>
</html>
于 2012-04-05T18:42:26.650 回答