Iphone 编程 IOS4 - 将视频添加到 JSON 包装器中的 HTML 代码

发布于 2024-09-15 12:19:50 字数 468 浏览 4 评论 0原文

我正在编写一个基于 HTML 的应用程序,并且应用程序中有一个 JSON 包装器。

4.0.2 更新后,iPhone 无法正常播放视频文件。所有播放视频文件的代码都基于 HTML,但更新后它只显示播放按钮,我无法单击视频来播放它。该文件位于应用程序中,格式为 .m4v 或 .mov。

我尝试过使用嵌入和对象格式,但都不适用于 IOS4.0.2,但适用于以前的版本。

我找到了一种将视频包装在 img 文件中的方法 {< img src...img properties... onclick="this.parentNode.innerHTML = '\x3Cembed src=\'videos ... video properties etc...>} 这需要点击 2 次才能播放视频。点击一次删除图像并再次单击播放视频,

如果可能的话,我希望一键播放视频。

如果有人有任何关于如何实现这一点的提示/技巧,我们将不胜感激。

I am writing an application which is based in HTML and has a JSON wrapper in the app.

After the 4.0.2 update the iphone does not play video files properly anymore. All the code to play video files is based in HTML but after the update it shows the play button only and I can not click on the video to play it. The file is located in the application and a .m4v or .mov format.

I have tried using embed and object formats, none work on IOS4.0.2 but work on previous versions.

I have found a way to wrap the video in an img file {< img src...img properties... onclick="this.parentNode.innerHTML = '\x3Cembed src=\'videos ... video properties etc...>} this takes 2 clicks to play the video. One click to remove the image and another click to play the video.

I would like to make the video play in 1 click if possible.

If anyone has any tips/tricks on how to make this possible it would be greatly appreciated.

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

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

发布评论

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

评论(1

韵柒 2024-09-22 12:19:50

您应该使用 在网页上显示视频:

<video src="http://www.example.com/somevideo.mp4">Your browser does not support video</video>

这是显示视频的HTML5方式。

You should use the <video> tag to display video on a web page:

<video src="http://www.example.com/somevideo.mp4">Your browser does not support video</video>

This is the HTML5 way of showing video.

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