是否可以调整嵌入的 .mov 的大小?

发布于 2024-08-22 06:29:12 字数 142 浏览 7 评论 0原文

我嵌入的 .mov 剪辑有时比显示它的位置大,所以我想调整剪辑的大小。尝试过使用 widthheight 但这只会改变显示它的区域;它不会调整实际电影的大小。

可以调整影片大小吗?如果是,怎么办?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谷夏 2024-08-29 06:29:12

是的,您需要 scale 属性:

<embed src="sample.mov" width="200" height="240" scale="tofit">

这里有 QuickTime 视频属性的完整参考< /a>.

Yes, you need the scale attribute:

<embed src="sample.mov" width="200" height="240" scale="tofit">

There's a full reference for QuickTime video attributes here.

一笔一画续写前缘 2024-08-29 06:29:12

有时比例属性不起作用。这将有助于将嵌入元素放置在对象元素中。

<object height="240" width="200"><embed src="sample.mov" height="240" width="200"/></object>

确保对象元素中的高度和宽度值与嵌入元素中的高度和宽度值相同。
     祝你好运

Sometimes the scale attribute doesn't work. It would help to place the embed element in an object element.

<object height="240" width="200"><embed src="sample.mov" height="240" width="200"/></object>

Make sure that the height and width value in the object element is the same as in the embed element.
      Good Luck

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文