编程语言
首页 > 编程语言> > javascript – tv-tab-container js用于使用Closure库的工作选项卡

javascript – tv-tab-container js用于使用Closure库的工作选项卡

作者:互联网

我有一个涉及使用Google TV UI Closure库进行键盘/ d-pad导航的项目.我正在使用从googles appspot tvui demos复制的代码来获取电视标签容器

<div class="tv-tab-container tv-container-vertical">
  <div class="tv-tab-container-bar tv-container-horizontal">
    // Tab bar components.
  </div>
  <div class="tv-tab-container-content tv-container-horizontal">
    // Content components.
  </div>
</div>

我的印象是闭包库会处理更改选项卡的内容,但事实并非如此.有人知道使标签功能所需的javascript吗?我不太了解使用tv-tab-container-bar选项卡处理闭包库事件

解决方法:

tvuidemos.appspot.com/上的标签容器演示效果很好.首先,您的HTML需要像内容组件一样进行增强:

  
    选项卡1tab 2tab 3tab 4
  
  
    内容1
    内容2
    内容3
    内容4
  

其次,您可能需要包含更多的js文件,而不仅仅是tab_container.js.此链接列出了您可能需要的依赖项:

http://tvuidemos.appspot.com/static/tv-ui/deps.js

如果您有一个公共URL可供共享容器示例共享,则可能更容易确定问题所在.

标签:javascript,javascript-events,navigation,google-closure,google-tv
来源: https://codeday.me/bug/20190629/1329746.html