Materiale angolare 7 - Card
Il <mat-card>, una direttiva angolare, viene utilizzata per creare una scheda con funzionalità di animazione e stile di material design. Fornisce stili preimpostati per le sezioni delle carte comuni.
<mat-card-title> - Rappresenta la sezione per il titolo.
<mat-card-subtitle> - Rappresenta la sezione per i sottotitoli.
<mat-card-content> - Rappresenta la sezione per il contenuto.
<mat-card-actions> - Rappresenta la sezione per le azioni.
<mat-card-footer> - Rappresenta la sezione per il piè di pagina.
In questo capitolo, mostreremo la configurazione richiesta per disegnare un controllo carta utilizzando Angular Material.
Crea applicazione angolare
Segui i seguenti passaggi per aggiornare l'applicazione Angular che abbiamo creato in Angular 6 - Capitolo Configurazione del progetto -
Passo | Descrizione |
---|---|
1 | Creare un progetto con un nome materialApp come spiegato nel capitolo Angular 6 - Project Setup . |
2 | Modifica app.module.ts , app.component.ts , app.component.css e app.component.html come spiegato di seguito. Mantieni il resto dei file invariato. |
3 | Compilare ed eseguire l'applicazione per verificare il risultato della logica implementata. |
Di seguito è riportato il contenuto del descrittore del modulo modificato app.module.ts.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
import {MatCardModule, MatButtonModule} from '@angular/material'
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
BrowserAnimationsModule,
MatCardModule, MatButtonModule,
FormsModule,
ReactiveFormsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Di seguito è riportato il contenuto del file CSS modificato app.component.css.
.tp-card {
max-width: 400px;
}
.tp-header-image {
background-image: url('https://www.tutorialspoint.com/materialize/src/html5-mini-logo.jpg');
background-size: cover;
}
Di seguito è riportato il contenuto del file host HTML modificato app.component.html.
<mat-card class = "tp-card">
<mat-card-header>
<div mat-card-avatar class = "tp-header-image"></div>
<mat-card-title>HTML5</mat-card-title>
<mat-card-subtitle>HTML Basics</mat-card-subtitle>
</mat-card-header>
<img mat-card-image src = "https://www.tutorialspoint.com/materialize/src/html5-mini-logo.jpg" alt = "Learn HTML5">
<mat-card-content>
<p>
HTML5 is the next major revision of the HTML standard superseding
HTML 4.01, XHTML 1.0, and XHTML 1.1. HTML5 is a standard for
structuring and presenting content on the World Wide Web.
</p>
</mat-card-content>
<mat-card-actions>
<button mat-button>LIKE</button>
<button mat-button>SHARE</button>
</mat-card-actions>
</mat-card>
Risultato
Verifica il risultato.
Dettagli
- Qui, abbiamo creato una carta utilizzando mat-card.