Skip to content

Instantly share code, notes, and snippets.

@masterk63
Created July 22, 2017 13:34
Show Gist options
  • Save masterk63/351fad92dfad1f0a17ecb1e9c62db38d to your computer and use it in GitHub Desktop.
Save masterk63/351fad92dfad1f0a17ecb1e9c62db38d to your computer and use it in GitHub Desktop.
ViewChild
import { ViewChild } from '@angular/core';
@ViewChild('idDelElemento') imagen: any;
imagenHTML: any;
//costructor
this.imagenHTML = this.imagen.nativeElement;
//ya puedo trabajar, por ejmeplo obteniendo el alto del contenedor
this.imagenHTML.height
//HTML
<img #idDelElemento src=",,/../assets/cupon.png"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment