在 HTML5 视频播放器中嵌入超链接
有没有办法在 HTML5 视频播放器中嵌入 html 超链接(当浏览器中的 javascript 关闭时可读)?
也许是视频中使用 CSS 的嵌入链接,或者标题栏中的链接?
谢谢
Is there anyway to embed html hyperlinks (readable when javascript is off in the browser) within an HTML5 video player?
Maybe an embedded link within the video musing CSS, or a link in the title bar?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据推测,您正在寻找类似的内容:
不幸的是,这并不像您期望的那样工作。根据 W3C:
因此,内容(示例中的标签)不是一般的故障转移 - 它仅适用于旧版浏览器。为了更优雅地处理播放错误,您需要已启用 JavaScript 并在页面上运行。
一个快速而肮脏的解决方案可能是添加带有一些文本方向的 CSS 背景,即:
不幸的是,将整个内容包装在标签中并不使其可链接 - 您仍然需要使用启用 JavaScript 的 onclick 函数。
希望有帮助!
最佳,
扎克
开发者,长尾视频
Presumably, you're looking for something like:
Unfortunately, this doesn't work quite the way that you expect. Per W3C:
Thus, the content (the tag in the example) isn't a general failover - it's just for legacy browsers. In order to handle playback errors more gracefully, you'll need to have JavaScript enabled and running on the page.
A quick and dirty solution may be to add a CSS background with some text directions, ie:
Unfortunately, wrapping the whole thing in an tag doesn't make it linkable - you'd still need to use an onclick function with JavaScript enabled.
Hope that helps!
Best,
Zach
Developer, LongTail Video