Skip to content

Instantly share code, notes, and snippets.

@realtomaszkula
Last active June 3, 2018 19:44
Show Gist options
  • Save realtomaszkula/6ac80911484acaaa7de1f3e8f842a9f7 to your computer and use it in GitHub Desktop.
Save realtomaszkula/6ac80911484acaaa7de1f3e8f842a9f7 to your computer and use it in GitHub Desktop.
@Directive({
selector: 'img[appLazyLoad]'
})
export class LazyLoadDirective implements AfterViewInit {
@HostBinding('attr.src') srcAttr = null;
@Input() src: string;
private loadImage() {
this.srcAttr = this.src;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment