Created
July 22, 2017 13:34
-
-
Save masterk63/351fad92dfad1f0a17ecb1e9c62db38d to your computer and use it in GitHub Desktop.
ViewChild
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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