demo.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>OSMD Demo</title>
  5. <script src="/build/osmd-demo.js"></script>
  6. <script src="/demo/demo.js"></script>
  7. <link href="/demo/demo.css" media="all" rel="stylesheet" />
  8. </head>
  9. <body>
  10. <h1>Open Sheet Music Display Demo</h1>
  11. <table cellspacing="0">
  12. <tr>
  13. <td class="bignum">1</td>
  14. <td>
  15. <p>
  16. Select a sample from the list below...
  17. </p>
  18. <select id="select"></select>
  19. <p>... or just drag'n'drop your MusicXML file on this page.</p>
  20. </td>
  21. </tr>
  22. <tr>
  23. <td class="bignum">2</td>
  24. <td>
  25. <p>Current width: <span id="size-str">???</span>px</p>
  26. <p>Zoom factor: <span id="zoom-str">???</span>%</p>
  27. <p>
  28. Zoom controls:
  29. <input type="button" value="zoom in" id="zoom-in-btn"/>
  30. <input type="button" value="zoom out" id="zoom-out-btn"/>
  31. </p>
  32. <p>Cursor controls:
  33. <input type="button" value="show" id="show-cursor-btn"/>
  34. <input type="button" value="hide" id="hide-cursor-btn"/>
  35. <input type="button" value="next" id="next-cursor-btn"/>
  36. </p>
  37. </td>
  38. </tr>
  39. <tr id="error-tr">
  40. <td></td>
  41. <td id="error-td"></td>
  42. </tr>
  43. </table>
  44. </body>
  45. </html>