Iphone 编程 IOS4 - 将视频添加到 JSON 包装器中的 HTML 代码
我正在编写一个基于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用 在网页上显示视频:
这是显示视频的HTML5方式。
You should use the <video> tag to display video on a web page:
This is the HTML5 way of showing video.