Facebook
From olek, 1 Month ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 136
  1. import { Component } from '@angular/core';
  2.  
  3. @Component({
  4.   selector: 'app-root',
  5.   template: `
  6.     <div>
  7.       <h1>Mława</h1>
  8.       <p>
  9.         Miejscowość, w której mieszkam, jest malowniczym miastem położonym u podnóża gór. Otoczone piękną przyrodą i pełne urokliwych zabytków, to miejsce, gdzie natura spotyka się z historią.
  10.       </p>
  11.       <img ngIf="firstImageVisible" src="assets/images/mlawa.jpg" alt="Pierwsze zdjęcie">
  12.       <img ngIf="!firstImageVisible" src="assets/images/mlawa2.jpg" alt="Drugie zdjęcie">
  13.       <div>
  14.         <button (click)="showFirstImage()">Ratusz</button>
  15.         <button (click)="showSecondImage()">Kościół</button>
  16.       </div>
  17.     </div>
  18.   `,
  19.   styleUrls: ['./app.component.css']
  20. })
  21. export class AppComponent {
  22.   title = 'zadanie';
  23.   firstImageVisible: boolean = true;
  24.  
  25.   showFirstImage() {
  26.     this.firstImageVisible = true;
  27.   }
  28.  
  29.   showSecondImage() {
  30.     this.firstImageVisible = false;
  31.   }
  32. }
  33.