我正在使用可用于TVOS的CatalogTemplate。在关联区域(由网格填充)中,我需要锁定始终显示视频标题。目前,仅在突出显示项目时显示。有什么方法可以解决此问题?
这是我的TVML。(来自后端的数据由Mustache.js呈现)
<?xml version="1.0" encoding="UTF-8" ?>
<document>
<catalogTemplate theme="dark">
<banner>
<title style="color: rgb(255, 255, 255); tv-align: left; font-size: 40; padding: 50; font-weight: bold;">Categories</title>
</banner>
<list>
{{#data.categories}}
<section>
<listItemLockup>
<title style="font-size: 30;">{{category}}</title>
<relatedContent>
<grid>
<header>
<title style="font-weight: bold;">{{category}}</title>
</header>
<section>
{{#videos}}
<lockup videoURL="{{video_url}}">
<img src="{{thumbnail_url}}" width="300" height="169" />
<title>{{title}}</title>
</lockup>
{{/videos}}
</section>
</grid>
</relatedContent>
</listItemLockup>
</section>
{{/data.categories}}
</list>
</catalogTemplate>
</document>
我认为设置tv-text-highlight-style
样式将帮助您解决问题:
<title style="tv-text-highlight-style: marquee-on-highlight">{{title}}</title>
可以在此处找到其他选项和样式
我的问题与您的问题相同。我通过用 OnSelect 替换来解决它。这是示例:
<lockup onselect="playMedia('path to video', 'video')">
<img src="path to image" width="182" height="274"/>
<title>Movie 1</title>
</lockup>
在这里找到它
playmedia()在.js文件中函数。
的代码如下。function playMedia(extension, mediaType) {
var videourl = baseURL + extension;
var singleVideo = new MediaItem(mediaType, videourl);
var videoList = new Playlist();
videoList.push(singleVideo);
var myPlayer = new Player();
myPlayer.playlist = videoList;
myPlayer.play();
}
虽然不是理想的,但我能够通过使用a而不是显示视频标题来实现这一目标。