index.html 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <title>wavesurfer.js | Equalizer Example</title>
  6. <link href="data:image/gif;" rel="icon" type="image/x-icon" />
  7. <!-- Bootstrap -->
  8. <link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet">
  9. <link rel="stylesheet" href="../css/style.css" />
  10. <link rel="stylesheet" href="../css/ribbon.css" />
  11. <link rel="screenshot" itemprop="screenshot" href="https://katspaugh.github.io/wavesurfer.js/example/screenshot.png" />
  12. <!-- wavesurfer.js -->
  13. <script src="../../dist/wavesurfer.js"></script>
  14. <!-- Demo -->
  15. <script src="main.js"></script>
  16. </head>
  17. <body itemscope itemtype="http://schema.org/WebApplication">
  18. <div class="container">
  19. <div class="header">
  20. <ul class="nav nav-pills pull-right">
  21. <li><a href="/"><i class="glyphicon glyphicon-home"></i></a></li>
  22. </ul>
  23. <h1 itemprop="name">Equalizer Example</h1>
  24. </div>
  25. <div id="demo">
  26. <div id="waveform">
  27. <div class="progress progress-striped active" id="progress-bar">
  28. <div class="progress-bar progress-bar-info"></div>
  29. </div>
  30. <!-- Here be the waveform -->
  31. </div>
  32. <div class="controls">
  33. <button class="btn btn-primary" data-action="play">
  34. <i class="glyphicon glyphicon-play"></i>
  35. Play
  36. /
  37. <i class="glyphicon glyphicon-pause"></i>
  38. Pause
  39. </button>
  40. <div id="equalizer">
  41. <!-- Here be equalizer sliders -->
  42. </div>
  43. </div>
  44. </div>
  45. <div class="footer row">
  46. <div class="col-sm-12">
  47. <a rel="license" href="https://opensource.org/licenses/BSD-3-Clause"><img alt="BSD-3-Clause License" style="border-width:0" src="https://img.shields.io/badge/License-BSD%203--Clause-blue.svg" /></a>
  48. </div>
  49. <div class="col-sm-7">
  50. <span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">wavesurfer.js</span> by <a href="https://github.com/katspaugh/wavesurfer.js">katspaugh</a> is licensed under a&nbsp;<a style="white-space: nowrap" rel="license" href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause License</a>.
  51. </div>
  52. <div class="col-sm-5">
  53. <div class="pull-right">
  54. <noindex>
  55. Demo music track is <a href="http://www.jamendo.com/en/track/661578/trou" rel="nofollow"><b>Trou</b> <span class="muted">by</span>&nbsp;<b>czskamaarù</b></a>. Thanks!
  56. </noindex>
  57. </div>
  58. </div>
  59. </div>
  60. </div>
  61. <div class="github-fork-ribbon-wrapper right">
  62. <div class="github-fork-ribbon">
  63. <a itemprop="isBasedOnUrl" href="https://github.com/katspaugh/wavesurfer.js">Fork me on GitHub</a>
  64. </div>
  65. </div>
  66. <script>
  67. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  68. (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  69. m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  70. })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  71. ga('create', 'UA-50026819-1', 'wavesurfer.fm');
  72. ga('send', 'pageview');
  73. </script>
  74. </body>
  75. </html>