更改TVML元素的字体权重



我目前正在为Apple TV开发TVML应用程序,我一直在尝试对一些元素进行一些样式调整。

我已经能够遵循TVML文档,并且通过以下操作成功地将文本颜色从白色更改为黑色:

<description style="color: rgba(0, 0, 0)"> 
  Selvage banjo authentic messenger bag, pork belly occupy heirloom...etc
</description>

现在,根据文档,我想通过将其他样式(如font-weightlightfont-size)进行进一步的样式设置。

以下是我的一些尝试:

1

<description style="color: rgba(0, 0, 0); font-weight: light"> 
  text goes here
</description>

2

<description style="color: rgba(0, 0, 0) font-weight: light">
  text goes here
</description>

3

<description style="font-weight: light">
  text goes here
</description>

4

<description font-weight="light">
  text goes here
</description>

不幸的是,我不知道如何让它发挥作用。我正在使用descriptiveAlertTemplate

您需要设置电视文本样式:none-例如:

<description style="tv-text-style: none; font-size:36; font-weight:regular;">

相关内容

  • 没有找到相关文章

最新更新