Created
June 7, 2020 11:55
-
-
Save nidhinkumar06/45d0e6a6f0ab96af35c13c478ffad05b to your computer and use it in GitHub Desktop.
Musical Mojo
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="scrolling-wrapper-flexbox" style="height: 400px" > | |
<div *ngFor="let category of categories" > | |
<div class="card card-outline"> | |
<div [hidden]="!imageLoader" class="box shine"></div> | |
<img [hidden]="imageLoader" (load)="this.imageLoader = false;" src={{category.url}} class="card-img-top" /> | |
<div class="card-body"> | |
<h5 class="card-title">{{category.name}}</h5> | |
<button class="btn btn-warning" (click)="musicSelect(category.name)">Play Now</button> | |
</div> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment