index.html 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>%%WEBINTF_TITLE%%</title>
  6. <link rel="stylesheet" href="style.css">
  7. <link rel="stylesheet" href="playerControl.css">
  8. <script type="text/javascript" src="jquery-1.10.1.min.js"></script>
  9. <script type="text/javascript" src="jquery.ui.widget.js"></script>
  10. <script type="text/javascript" src="jquery.iframe-transport.js"></script>
  11. <script type="text/javascript" src="jquery.fileupload.js"></script>
  12. <script type="text/javascript" src="/web_resources.js"></script>
  13. <script type="text/javascript" src="main.js"></script>
  14. <script type="text/javascript" src="playerControl.js"></script>
  15. </head>
  16. <body>
  17. <div id="header">
  18. <div class="nav">
  19. <a class="btn linkBtn" href="http://www.videolan.org" target="_blank"><div class="icon"></div></a>
  20. <div class="btn uploadBtn">
  21. <input id="fileupload" type="file" name="files[]" data-url="upload.json" multiple>
  22. +
  23. </div>
  24. </div>
  25. </div>
  26. <div class="main">
  27. <div class="display-message"></div>
  28. <div class="uploads">
  29. <ul></ul>
  30. </div>
  31. <div class="messageUpload">
  32. <h1>%%WEBINTF_DROPFILES%%</h1>
  33. <p>%%WEBINTF_DROPFILES_LONG%%</p>
  34. </div>
  35. <form class="open-url">
  36. <div>
  37. <input type="text" placeholder="%%WEBINTF_OPEN_URL%%">
  38. <button type="submit" class="submit-button">
  39. +
  40. </button>
  41. </div>
  42. </form>
  43. <div class="player-control">
  44. <div class="title"></div>
  45. <div class="play-pause play">
  46. <span class="play-button">►</span>
  47. <div class="pause-button"><span> </span><span> </span></div>
  48. </div>
  49. <div class="progress">
  50. <div class="progress-bar">
  51. <div class="button-holder">
  52. <div class="progress-button"> </div>
  53. </div>
  54. </div>
  55. <div class="time"><span class="ctime"></span>
  56. <span class="stime"> / </span>
  57. <span class="ttime"></span></div>
  58. <div class="buffered"></div></div>
  59. <div class="volume">
  60. <div class="volume-holder">
  61. <div class="volume-bar-holder">
  62. <div class="volume-bar">
  63. <div class="volume-button-holder">
  64. <div class="volume-button"> </div>
  65. </div>
  66. </div>
  67. </div>
  68. </div>
  69. <div class="volume-icon v-change-0"></div>
  70. </div>
  71. </div>
  72. <div id="footer">
  73. <p>VLC for tvOS is free, open-source software published by <a href="http://www.videolan.org" target="_blank">VideoLAN</a>. <br />Modification and redistribution is subject to both the <a href="http://opensource.org/licenses/GPL-2.0" target="_blank">GPLv2 (or later)</a> and the <a href="http://opensource.org/licenses/MPL-2.0" target="_blank">MPLv2</a> as well as further rights reserved by the VideoLAN non-profit organization.<br />You can find more information about licensing in the About dialog within the app.<br />VideoLAN, VLC and VLC media player are internationally registered trademarks of the <a href="http://www.videolan.org/videolan/" target="_blank">VideoLAN non-profit organization</a>.</p>
  74. </div>
  75. </div>
  76. <div id="overlay" class="">
  77. <div id="modal">
  78. <ul class="downloads cf">
  79. <!-- content of div.content goes here -->
  80. </ul>
  81. </div>
  82. </div>
  83. </body>
  84. </html>