Card は、整理されたコンテンツを魅力的な方法で表示する方法を提供します。
IgxCardModule
igx-card-theme, igx-icon-theme, igx-button-theme
card, button, avatar, icon
レイアウト
Ignite UI Card は、カスタム コンテンツを配置するコンテナです。コンテンツを配置するため、カードに 5 つのセクションがあります。それらはヘッダー、メディア、コンテンツ、アクションおよびフッターです。
<igx-card> <igx-card-header> <h3 igxCardHeaderTitle>{{title}}</h3> <h5 igxCardHeaderSubtitle>{{subtitle}}</h5> </igx-card-header> <igx-card-actions> <button type="button" igxButton igxRipple>Share</button> <button type="button" igxButton igxRipple>Play Album</button> </igx-card-actions></igx-card> Copy
<igx-card> <igx-card-header> <h3 igxCardHeaderTitle>{{title}}</h3> <h5 igxCardHeaderSubtitle>{{subtitle}}</h5> </igx-card-header> <igx-card-actions> <button type="button" igxButton igxRipple>Share</button> <button type="button" igxButton igxRipple>Play Album</button> </igx-card-actions></igx-card>
カードが elevated かどうかを設定または取得します。 デフォルト値は false です。
false
<igx-card elevated></igx-card> Copy
<igx-card elevated></igx-card>
let cardElevation = this.card.elevated; Copy
let cardElevation = this.card.elevated;
カードの horizontal 属性の値を設定します。これを true に設定すると、異なるカード セクションが水平に並ぶようになり、カードを横に反転します。
horizontal
true
<igx-card [horizontal]="true"></igx-card> Copy
<igx-card [horizontal]="true"></igx-card>
カードのid を設定または取得します。 設定しない場合、id は "igx-card-0" 値を持ちます。
id
"igx-card-0"
<igx-card id="my-first-card"></igx-card> Copy
<igx-card id="my-first-card"></igx-card>
let cardId = this.card.id; Copy
let cardId = this.card.id;
カードの role 属性の値を設定します。 デフォルトで値が group に設定されています。
role
group
<igx-card role="group"></igx-card> Copy
<igx-card role="group"></igx-card>
Card は、整理されたコンテンツを魅力的な方法で表示する方法を提供します。
Igx Module
IgxCardModule
Igx Theme
igx-card-theme, igx-icon-theme, igx-button-theme
Igx Keywords
card, button, avatar, icon
Igx Group
レイアウト
備考
Ignite UI Card は、カスタム コンテンツを配置するコンテナです。コンテンツを配置するため、カードに 5 つのセクションがあります。それらはヘッダー、メディア、コンテンツ、アクションおよびフッターです。
例