如何将网页上的视频流设置为网页视图中的特定大小

发布于 2024-11-03 23:37:12 字数 270 浏览 0 评论 0原文

我正在尝试加载一个网页以适合网络视图。该网页仅包含视频流。当我缩放页面以适合它时,视频流会显示在屏幕的左上角,而当我不这样做时没有缩放以适应视频太大,无法适应 iPhone 屏幕。我正在尝试让视频完美显示在屏幕上。

  1. 我可以使用 xcode 来更改它以适应吗?如果是这样怎么办?

  2. 或者我是否必须更改网站上的视频属性才能使视频流适合。

它不是我的网站,但我确实有权使用它,因此最好使用 xcode 来安装它。欢迎任何建议。

I am trying to load a web page to fit into a web view.The web page consists of a video stream only.When i have the page scaled to fit it show the video stream in the top left part of the screen and when i don't have it scaled to fit the video is too big to fit on the iphones screen.I am trying to get it so that the video displays in the screen perfectly.

  1. Can i change this to fit by using xcode? if so how?

  2. Or do i have to change the video properties on the site to make the video stream fit.

Its not my site, but i do have permission to use it, so fitting it in using xcode would be preferred.Any suggestions welcome.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

夏末的微笑 2024-11-10 23:37:12

如果有一个解决方案适合您的观点#2,我非常感兴趣,但现在您可以在 JavaScript 上执行以下操作,以区分普通 PC 或 iPhone(如您的情况):

  if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) 
  {
     // Change the Video properties.
  }

I am so Interested if there is a solution fitting your point #2, but for now you can do the following on JavaScript to distinguish between a regular PC or an iPhone as in your case:

  if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) 
  {
     // Change the Video properties.
  }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文