2016-04-11 6 views
1

compilationTemplaterelatedContentエリアにdescriptionテキストをラップする方法はありますか。TVMLでのコンパイルテンプレートのrelatedContent領域の行の説明テキスト

appletv

マイdescriptionタグ:

<description style="tv-text-style: none; font-size:36; font-weight:regular; word-wrap:break-word;">lorem ipsum dolor sit amet consectetur adipiscing elit</description> 

全テンプレート:

var Template = function() { return `<?xml version="1.0" encoding="UTF-8" ?> 
    <document> 
     <compilationTemplate theme="light"> 
      <list> 
       <relatedContent> 
        <itemBanner> 
         <heroImg src="${this.BASEURL}images/shows/bates/BRANDHD2398_AEN_BATE_168121_TVE_000_2398_60_20160303_00_S3_REV_HD_1920x1080-16x9.jpg" /> 
         <description style="tv-text-style: none; font-size:36; font-weight:regular; word-wrap:break-word;">lorem ipsum dolor sit amet consectetur adipiscing elit</description> 
        </itemBanner> 
       </relatedContent> 
       <header> 
        <title>Bates Motel</title> 
        <subtitle>Season 4</subtitle> 
       </header> 
       <section> 
        <listItemLockup> 
         <ordinal minLength="2">1</ordinal> 
         <title>A Danger to Himself and Others</title> 
         <decorationLabel>11:14</decorationLabel> 
        </listItemLockup> 
        < !-- ... -- > 
       </section> 
      </list> 
     </compilationTemplate> 
    </document>` 
} 

文字サイズの変更が、説明ではなく、次の行にラップを切り捨てます。

答えて

3

min-height,max-heightのスタイルで変更しますか?tv-text-max-lineshttps://github.com/iBaa/PlexConnectApp/blob/master/PlexConnectApp/TVMLTemplates/Fanart/Movie_PrePlay.xmlの例は、class description以降の使用を参照してください。

(コメントと二重チェックに基づいて編集14Apr16)

+0

あなたの答えをありがとう。このような? lorem ipsum '私は何の変化も見ていない。 – JAL

+0

はい、私の考えもそうでした。わかった、私は早くそれをやりました。私に見てみましょう、どこに/どのように... – Baa

+0

答えを編集しました。 – Baa

関連する問題