Angular-material7-card
提供:Dev Guides
角度材料7-カード
Angular Directiveである <mat-card> は、マテリアルデザインのスタイリングとアニメーション機能を備えたカードを作成するために使用されます。 一般的なカードセクションのプリセットスタイルを提供します。
- <mat-card-title> -タイトルのセクションを表します。
- <mat-card-subtitle> -字幕のセクションを表します。
- <mat-card-content> -コンテンツのセクションを表します。
- <mat-card-actions> -アクションのセクションを表します。
- <mat-card-footer> -フッターのセクションを表します。
この章では、Angular Materialを使用してカードコントロールを描画するために必要な構成を紹介します。
角度アプリケーションを作成する
次の手順に従って、_Angular 6-Project Setup_章で作成したAngularアプリケーションを更新します-
Step | Description |
---|---|
1 | Create a project with a name materialApp as explained in the Angular 6 - Project Setup chapter. |
2 | Modify app.module.ts, app.component.ts, app.component.css and app.componentl as explained below. Keep rest of the files unchanged. |
3 | Compile and run the application to verify the result of the implemented logic. |
変更されたモジュール記述子 app.module.ts の内容は次のとおりです。
変更されたCSSファイル app.component.css の内容は次のとおりです。
以下は、変更されたHTMLホストファイル app.componentl の内容です。
結果
結果を確認します。
詳細
- ここでは、マットカードを使用してカードを作成しました。