如何在我的时间轴中启用点按选项

时间:2013-11-19 12:28:54

标签: google-glass google-mirror-api

我有一个时间轴项目,我们将其视为开始时间表 现在,我想在开始时间轴上启用点按选项点击功能
点击后我想打开时间轴,如3或4时间线 我该怎么做?

1 个答案:

答案 0 :(得分:1)

如果开始时间轴时间轴捆绑包中的每个时间轴都是HTML,则可以使用分页。

您可以通过在包含多个文章标签的时间轴中插入1项来实现此目的。第一篇文章标签将在时间轴中显示,其他文章标签将在封面上打开。如果您不希望封面显示在已打开的项目中,请使用class="cover-only"

e.g。

<article class="cover-only>
  <section>
    <h1>This is where start timeline will go</h1>
  </section>
</article>
<article>
  <section>
    <h1>This will show first when the "start timeline" item is tapped</h1>
  </section>
</article>
<article>
  <section>
    <h1>This will show when swiping from the first bundled timeline item</h1>
  </section>
</article>

如果您的时间轴项目不是HTML,则可以使用捆绑包ID。

单独插入所有时间轴项目,但为bundleId提供相同的值。然后为true提供开始时间轴 isBundleCover的值。