在屏幕上保持HTML5控件?

时间:2016-09-07 19:43:41

标签: javascript html5

我们正在使用jplayer来显示HTML5视频。我们希望用户可以选择使用搜索栏跳过视频。在IE,FF和Chrome上,仅当鼠标悬停在视频上时才会显示搜索栏,否则它将被隐藏。我们的老客户可能不知道滚动视频以查看搜索栏。有没有办法在屏幕上始终保持控件?我试过在js / jquery中使用包装器,但没有运气。感谢。

1 个答案:

答案 0 :(得分:0)

让我引用文档中的一些文字:

  

autohide†

object : Sets the auto-hide options for the GUI in the screen display states.

Object Properties:

restored
    Boolean : (Default: false) : Auto-hide the GUI when in the restored screen display state.
full
    Boolean : (Default: true) : Auto-hide the GUI when in the full screen display state.
fadeIn
    Number : (Default: 200) : The period of the fadeIn animation in milliseconds.
fadeOut
    Number : (Default: 600) : The period of the fadeOut animation in milliseconds.
hold
    Number : (Default: 1000) : The period of the pause before autohide begins in milliseconds.

我们这里有HOLD选项。我找到的唯一方法是将此值设置为9999999999。