-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into Sergio_Ramirez
- Loading branch information
Showing
32 changed files
with
2,594 additions
and
741 deletions.
There are no files selected for viewing
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export class img{ | ||
source_url : string; | ||
|
||
constructor (source_url){ | ||
this.source_url = source_url; | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
export class news{ | ||
title : string; | ||
content : string; | ||
excerpt : string; | ||
featured_media : string; | ||
|
||
constructor (title, content, excrept, featured_media){ | ||
this.content = content; | ||
this.title = title; | ||
this.excerpt = excrept; | ||
this.featured_media = featured_media; | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export class songInfo{ | ||
current:string; | ||
} |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,27 @@ | ||
<ion-header [translucent]="true"> | ||
<ion-header > | ||
<ion-toolbar> | ||
<div class="audio-player"> | ||
|
||
<div (click)="play()" *ngIf="!isPlaying" id="play-btn"></div> | ||
<div (click)="stop()" *ngIf="isPlaying" id="play-btn" class="pause"></div> | ||
|
||
|
||
<div class="audio-wrapper" id="player-container" href="javascript:;"> | ||
<audio preload="metadata" (loadedmetadata)="control($event)" (timeupdate)="update()" name="media" #audioPlayer> | ||
<audio preload="metadata" (loadedmetadata)="control($event)" (timeupdate)="update()" name="media" #audioPlayer> | ||
<source [src]="URL" type="audio/mpeg"> | ||
</audio> | ||
</audio> | ||
</div> | ||
|
||
|
||
|
||
<div class="player-controls scrubber"> | ||
<!--Song Name--> | ||
<p>Oslo</p> | ||
<!--Artist Name--> | ||
<small>Holy Esque</small> | ||
|
||
<!-- | ||
<span id="seekObjContainer"> | ||
<progress id="seekObj" value="0" max="1"></progress> | ||
</span> | ||
<br> | ||
<small style="float: left; position: relative; left: 15px;" class="start-time"></small> | ||
<small style="float: right; position: relative; right: 20px;" class="end-time"></small> | ||
--> | ||
<p style="font-weight: 700;" [innerHTML]="songName"> </p> | ||
<small [innerHTML]="artistName"></small> | ||
</div> | ||
<div class="album-image"> | ||
<img *ngIf="this.albumImage" [src]="this.albumImage" alt=""> | ||
</div> | ||
<div class="album-image" style="background-image: url('https://artwork-cdn.7static.com/static/img/sleeveart/00/051/614/0005161476_350.jpg')"></div> | ||
</div> | ||
</ion-toolbar> | ||
<ion-progress-bar [value]="progress"> </ion-progress-bar> | ||
|
||
<ion-progress-bar [value] ="progress"></ion-progress-bar> | ||
|
||
</ion-header> |
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
Oops, something went wrong.