ng2-emojify
Version:
An angular 2 module to support built-in and custom emoji
8 lines (7 loc) • 311 B
HTML
<div [ngStyle]="emotionMenuCss" id="app-emogi-menu">
<div [ngStyle]="emotionContainerCss" *ngFor="let image of images" (click)="setImageInformation(image)">
<span>
<img src="{{image.emojiUrl}}" [ngStyle]="emotionImageCss" class="app-emogi-image" title="{{image.title}}">
</span>
</div>
</div>