Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <!DOCTYPE html>
  2. <!--
  3. BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
  4. Copyright (c) 2012 BigBlueButton Inc. and by respective authors (see below).
  5. This program is free software; you can redistribute it and/or modify it under the
  6. terms of the GNU Lesser General Public License as published by the Free Software
  7. Foundation; either version 3.0 of the License, or (at your option) any later
  8. version.
  9. *
  10. BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
  11. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12. PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public License along
  14. with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
  15. -->
  16. <html>
  17. <head>
  18. <title>BigBlueButton Playback</title>
  19. <link rel="stylesheet" href="css/bbb.playback.css">
  20. <script type="text/javascript" src="lib/jquery.min.js"></script>
  21. <script type="text/javascript" src="lib/jquery-ui.min.js"></script>
  22. <link rel="stylesheet" type="text/css" href="acornmediaplayer/acornmediaplayer.base.css" />
  23. <script type="text/javascript" src="acornmediaplayer/jquery.acornmediaplayer.js"></script>
  24. <link rel="stylesheet" type="text/css" href="acornmediaplayer/themes/access/acorn.access.css" />
  25. <link rel="stylesheet" type="text/css" href="acornmediaplayer/themes/darkglass/acorn.darkglass.css" />
  26. <script type="text/javascript" src="playback.js"></script>
  27. <script type="text/javascript" src="lib/popcorn-complete.min.js"></script>
  28. <script type="text/javascript" src="lib/popcorn.chattimeline.js"></script>
  29. <!--script type="text/javascript">
  30. jQuery(function() {
  31. });
  32. </script-->
  33. <style>
  34. .acorn-player.darkglass {
  35. overflow: visible;
  36. }
  37. </style>
  38. </head>
  39. <body>
  40. <h1 class="visually-hidden">BigBlueButton Playback</h1>
  41. <div id="playbackArea" class="clearfix" role="main">
  42. <h2 class="visually-hidden">Slide Thumbnails</h2>
  43. <div id="thumbnails" role="region" aria-label="Slide thumbnails"></div>
  44. <h2 class="visually-hidden">Presentation Slides</h2>
  45. <div id="presentation">
  46. <div class="circle" id="cursor" style="visibility:hidden;"></div>
  47. <div id="slide" role="img" aria-labelledby="slideText"></div>
  48. <div id="slideText" class="visually-hidden" aria-live="polite"></div>
  49. </div>
  50. <div id="chatAndMediaArea">
  51. <h2 class="visually-hidden">Chat Messages</h2>
  52. <input type="checkbox" name="exposechat" id="exposechat" value="exposechat" class="visually-hidden" checked="checked" />
  53. <label for="exposechat" class="visually-hidden">Read chat messages</label>
  54. <div id="chat" aria-live="polite" role="region" aria-label="Chat messages"></div>
  55. <div id="videoRecordingWrapper" role="region" aria-label="Video">
  56. <!--
  57. <video id="webcam" >You must use an HTML5 capable browser to view this page.
  58. This playback requires modern browser, please use FF, Safari, Chrome</video>
  59. -->
  60. </div>
  61. <div id="audioRecordingWrapper" role="region" aria-label="Audio">
  62. <!--
  63. <audio id="video">You must use an HTML5 capable browser to view this page.
  64. This playback requires modern browser, please use FF, Safari, Chrome</audio>
  65. -->
  66. </div>
  67. </div>
  68. </div>
  69. <!--div id="playbackControls">
  70. <div id="autoscrollWrapper">
  71. <input id="autoscrollEnabled" type="checkbox" name="autoscrollEnabled" checked="true" aria-label="Toggle autoscroll"/>
  72. <label for="autoscrollEnabled">Auto scroll</label>
  73. </div>
  74. </div-->
  75. <!--
  76. <div id="accInfo">
  77. <input id="accEnabled" type="checkbox" value="accEnabled" />
  78. <label for="accEnabled">Enable accessibility pauses</label><br/>
  79. <div id="countdown" />
  80. </div>
  81. -->
  82. <div id="footer">
  83. <p>Recorded with <a target="_blank" href="http://bigbluebutton.org/">BigBlueButton</a>. </p>
  84. <p>Use <a target="_blank" href="http://mozilla.org/firefox">Mozilla Firefox</a> or
  85. <a target="_blank" href="http://google.com/chrome/">Google Chrome</a> to play this recording.
  86. </p>
  87. </div>
  88. <!-- <script src='lib/writing.js'></script> -->
  89. </body>
  90. </html>