1

I'm still very new, please be gentle.

I am trying to display video controls at the top of a video that I am putting on my company's website, but I haven't found anything on google (or stackoverflow directly) in order to get this to work right. Basically, anything I try keeps the controls at the bottom of the video (which I assume is the default).

 <video class="yadda" width="100%" controls="top">....</video> 

does not work.

Any help would be greatly appreciated!

4

2 回答 2

0

根据这个 Chrome 错误,可以从 Javascript 访问媒体控件。不幸的是,访问似乎是特定于浏览器的。

https://bugs.webkit.org/show_bug.cgi?id=86769

希望这些控件可以通过标准方法访问。当它们已经在每个 HTML5 兼容浏览器中并且正在被可视化操作时,我不想编写自己的或使用 3rd 方媒体控件。

于 2014-05-04T04:29:34.613 回答
0

controls属性不接受任何值 - 它应该像这样使用:

<video class="yadda" width="100%" controls>....</video>

控件将显示在视频底部,带有标准图标。不幸的是,视频控件也无法自定义。如果您希望它们位于顶部,则必须创建自己的自定义界面。

来自http://www.w3.org/TR/2008/WD-html5-20080122/#controls的信息

于 2014-03-26T20:00:05.783 回答