Author: | mgechev |
---|---|
Official Page: | Go to website |
Publish Date: | March 11, 2020 |
License: | MIT |
Description:
A minimal circular audio player component for Angular.js applications.
How to use it:
1. Install and import the module.
# NPM $ npm install ngx-circular-player --save
import { NgxCircularPlayerModule } from 'ngx-circular-player'; @NgModule({ imports: [NgxCircularPlayerModule], }) export class AppModule {}
2. Insert the circular player into your template.
<ngx-circular-player source="1.mp3"> </ngx-circular-player>
3. Customize the circular player with the following options.
<ngx-circular-player source="1.mp3" radius="120" stroke="20" innerStroke="2" strokeColor="#fff" progressStrokeColor="#858585" innerStrokeColor="#eee"> </ngx-circular-player>