我从我的数据库中检索嵌入代码视频。然而,在数据库中他们是650 x 650.我想要的是让它们变小。
使用template lite标签,我试过这个
<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>
发生这种情况..
答案 0 :(得分: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&movieid=1500%22" wmode="window" bgcolor="#000000" allowfullscreen="true" scale="noScale" width="640" height="483" type="application/x-shockwave-flash">
</div>
</body>
</html>