如何缩放嵌入的 Flash 视频而不裁剪它?
我在我的网站上嵌入了 Flash 视频。
我遇到的问题是,它在 Mac 上的 Firefox 中似乎可以很好地重新缩放,但在 Windows 上的 Firefox 中它只会裁剪视频。
这是我的 HTML
<object width="650" height="500">
<param name="movie" value="How To Add A Location">
<embed src="http://www.fribblesoft.com/zs-content/How_To_Add_A_Location.swf"
width="650"
height="500"
allowfullscreen="true"
bgcolor="#000000"
scale="tofit"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer">
</embed>
</object>
I have embedded a flash video on my website.
I am having the problem that it seems to rescale fine in Firefox on the Mac, but in Firefox in Windows it just crops the video.
Here it my HTML
<object width="650" height="500">
<param name="movie" value="How To Add A Location">
<embed src="http://www.fribblesoft.com/zs-content/How_To_Add_A_Location.swf"
width="650"
height="500"
allowfullscreen="true"
bgcolor="#000000"
scale="tofit"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer">
</embed>
</object>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题出在 Flash 上,而不是 HTML 上。影片首次加载时会正确缩放,但几秒钟后它会改变尺寸。这表明 Flash 可能会根据像素值动态调整所有元素的大小,而不是相对于舞台的大小。
The problem is going to be with the Flash, not the HTML. The movie is scaled correctly when it first loads, but after a few seconds it changes dimensions. This indicates that the Flash is probably resizing all of the elements dynamically based upon pixel values, rather than relative to the size of the stage.
我想这可能就是Jing视频的一个特点。以下 html 似乎适用于其他 shockwave 文件。
I think this just might be a property of the Jing video. The following html seems to work for other shockwave files.