Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <ul> <!-- Each song on the album -->
- <li class="song-block"
- *ngFor='let song of songsToDisplay'
- (click)="getSong(song)"
- (mouseenter)="hoverStateIn()"
- (mouseleave)="hoverStateOut()">
- <div class="song-card"
- (click)="addPlay(song)">
- <p *ngIf="!song.isPlaying"
- class="song-number">{{song.tracknumber}}</p>
- <i *ngIf="song.isPlaying" class="fa fa-play"></i>
- <p class="song-name">{{song.name}}</p>
- <p class="song-length">{{song.length}}</p>
- <div class="thumbs"
- *ngIf="hover"> <!-- Thumbs section -->
- <i class="fa fa-thumbs-up"></i>
- <i class="fa fa-thumbs-down"></i>
- </div>.....
- </ul>
- hover: boolean = false;
- hoverStateIn(){
- this.hover = true
- }
- hoverStateOut(){
- this.hover = false;
- }
Add Comment
Please, Sign In to add comment