2.2.2 • Published 8 years ago

angular-audio-player-html5-es6 v2.2.2

Weekly downloads
5
License
MIT
Repository
github
Last release
8 years ago

angular-audio-player-html5-es6

Angular Audio Component Player - HTML5/ES6

Demo

View demo

Print Screen

angular audio component player

Download

npm i angular-audio-player-html5-es6

Creating html

<html data-ng-app="app">
<head>
  <meta charset="utf-8">
  <title>Angular Audio Player Component - HTML5/ES6</title>
</head>
<body data-ng-controller="AppController as ctrl">
  <!-- Component Audio Player -->
  <audio-player title="Audio Player" options="ctrl.options" musics="ctrl.list"></audio-player>
  <!-- /Component Audio Player -->
  <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"></script>
  <script src="dist/bundle.min.js"></script>
  <script src="app.js"></script>
</body>
</html>

Creating controller

angular
  .module('app', ['audio.player'])
  .controller('AppController', ['$scope', function ($scope) {
    var ctrl = this;
    ctrl.options = {
      autoplay: true,
      loop: false,
      random: true,
      origin: 'anonymous' // Optional, anonymous is default
    }
    ctrl.list = [
      {
        artist: 'Chasing Ghosts',
        title: 'Fallen From Grace',
        album: 'Chasing Ghosts',
        value: 'musics/Chasing_Ghosts-Fallen_From_Grace.mp3'
      },
      {
        artist: 'Sepultura',
        title: 'Refuse/Resist',
        album: 'Chaos A.D.',
        value: 'musics/Sepultura-Refuse_Resist.mp3'
      },
      {
        artist: 'Raimundos',
        title: 'Baily Funk',
        album: 'Lapadas do povo',
        value: 'musics/Raimundos-Baily_Funk.mp3'
      }
    ]
  }])

Este repositório surgiu da palestra do Willian Justen no BrazilJS 2016, que mostrou por onde começar os estudos sobre audio api. Thanks Willian ;)


Changelog

VersionDescription
1.0.0Upping Angular Audio Player Component
2.0.0Config changed in component and code improvements
2.1.0Added elapsed and remaining time
2.2.0Config changed and imports HTML, CSS files
2.2.1Create sub-component audio-list and apply audio-list toggle animation
2.2.2Adding SVG icons to loop, random and also changed the npm tasks

Developer

npm scripts

CommandDescription
npm startStart live server, concat, babelify and watchify changes
npm run buildConcat, Babelify and Minify
2.2.2

8 years ago

2.2.1

8 years ago

2.1.0

8 years ago

2.0.1

8 years ago

2.0.0

8 years ago

1.0.0

8 years ago