是否可以更改 iPhone 上视频标签的默认播放图标?
我正在开发一个客户端网站的移动优化版本,其中包含许多 HTML5 视频标签。在 iPhone 上观看时,它会显示默认的播放按钮水印。这个图标可以自定义吗?
I'm working on a mobile-optimized version of a client site that contains many HTML5 video tags. When viewing on the iPhone it's displaying the default play button watermark. Is it possible to customize this icon?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您不能在 HTML 中执行此操作,因为您看到的播放图标实际上是位于网页顶部的(未记录的)UIButton 子类。它不是一个 HTML 元素,而是一个 UIKit 元素。
我过去曾乱七八糟地修改过这个按钮,但是你需要在 Objective-C 的 UIWebView 上执行各种狡猾的操作,而不是 HTML,所以它可能对你没有多大帮助(即使有,它也没有文档记录,所以不是无论如何都适合生产使用)。
I don't think you can do this in the HTML, because the play icon you're seeing is in fact an (undocumented) UIButton subclass that's laid on-top of the webpage. It's not an HTML element, it's a UIKit one.
I have messed around in the past with modifying this button, but you need to perform various dodgy operations on a UIWebView from Objective-C, not HTML, so it's probably not much help to you (even if it was, it's all undocumented so not suitable for production use anyway).