-
-
Save netstart/8e715c7a7ee0797e18ed5353a4075f74 to your computer and use it in GitHub Desktop.
Background Image Style Directive for Angular 2 and Ionic 2
This file contains 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 {Directive, ElementRef, Input} from '@angular/core'; | |
@Directive({ | |
selector: '[background-image]' | |
}) | |
export class BackgroundImage { | |
private el: HTMLElement; | |
constructor(el: ElementRef) { | |
this.el = el.nativeElement; | |
} | |
@Input('background-image') backgroundImage: string; | |
ngAfterViewInit() { | |
this.el.style.backgroundImage = 'url(' + this.backgroundImage + ')'; | |
} | |
} |
This file contains 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
<div class="header" background-image="{{ item.featured_image }}"> | |
<!--some content--> | |
</div> | |
<!-- alternative --> | |
<div class="header" [ngStyle]="{'background-image': 'url(' + item.featured_image + ')'}"> | |
<!--some content--> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment