Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图<track>在 HTML5 中的 -Element 显示的视频字幕(Webvtt 格式)中实现很少的图形(使用 Chrome)。到目前为止,我使用 CSS 进行了尝试,content:url()但background-image:url()没有成功。有人对我如何解决我的问题有任何想法或提示吗?
<track>
content:url()
background-image:url()
提前致谢
像这样使用 ::cue 选择器:
::cue { color: #FFF; background: transparent; text-shadow: black 0 0 0.2em; font: 1.2em sans-serif; }
1/你可以尝试使用z-index在video标签上添加div,不要使用track。2/然后你编写javascript函数用你的字幕更新div 3/你可以'css'它;)