是否可以调整嵌入的 .mov 的大小?
我嵌入的 .mov 剪辑有时比显示它的位置大,所以我想调整剪辑的大小。尝试过使用 width
和 height
但这只会改变显示它的区域;它不会调整实际电影的大小。
可以调整影片大小吗?如果是,怎么办?
I embed .mov clips that sometimes are bigger than the place where I show it, so I want to resize the clip. Have tried with width
and height
but that only changes the area to display it; it does not resize the actual movie.
Is it possible to resize the movie size? If yes, how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您需要
scale
属性:这里有 QuickTime 视频属性的完整参考< /a>.
Yes, you need the
scale
attribute:There's a full reference for QuickTime video attributes here.
有时比例属性不起作用。这将有助于将嵌入元素放置在对象元素中。
确保对象元素中的高度和宽度值与嵌入元素中的高度和宽度值相同。
祝你好运
Sometimes the scale attribute doesn't work. It would help to place the embed element in an object element.
Make sure that the height and width value in the object element is the same as in the embed element.
Good Luck