video-play.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?php
  2. session_start();
  3. if (isset($_POST["id"])) {
  4. $id = $_POST["id"];
  5. $folder = $_POST["folder"];
  6. }
  7. ?>
  8. <!doctype html>
  9. <html class="fixed">
  10. <head>
  11. <?php include("bim-support-header.html"); ?>
  12. <link href="https://vjs.zencdn.net/7.17.0/video-js.css" rel="stylesheet">
  13. <script src="./script/js/global.js"></script>
  14. <script src="./script/js/jquery.redirect.js"></script>
  15. <script>
  16. var userName = '<?php echo $_SESSION['name']; ?>';
  17. pageHeader = "亞新教育訓練平台";
  18. </script>
  19. </head>
  20. <body>
  21. <section class="body">
  22. <!-- start: header -->
  23. <header-menu></header-menu>
  24. <!-- end: header -->
  25. <div class="inner-wrapper">
  26. <!-- start: sidebar -->
  27. <side-bar></side-bar>
  28. <!-- end: sidebar -->
  29. <section role="main" class="content-body">
  30. <header class="page-header">
  31. <h2 id="header">{{pageHeader}}</h2>
  32. <button class="mb-xs mt-xs mr-xs btn btn-default right" type="button" style="float: right;" onclick="returnToList(folder)">回上層</button>
  33. </header>
  34. <div class="row">
  35. <div class="col-md-9">
  36. <section class="panel" id="video-body">
  37. <video class="video-js vjs-big-play-centered vjs-16-9" controls="" width="100%" data-setup="{}" id="video" poster="./assets/images/video-loading.gif" preload="auto">
  38. <p class="vjs-no-js">To view this video please enable JavaScript, and consider upgrading to a web browser that <a href="https://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a></p>
  39. </video>
  40. <div class="panel-body" style="color:black;">
  41. <h4>課程簡介</h4>
  42. <text id="description"></text>
  43. </div>
  44. </section>
  45. </div>
  46. <div class="col-md-3">
  47. <section class="panel" id="video-list-panel">
  48. <div class="panel-body" style="height: 100%;overflow: auto;">
  49. <span>相關影片</span>
  50. <ul class="nav nav-main" id="video-list"></ul>
  51. </div>
  52. </section>
  53. </div>
  54. <div class="col-md-3">
  55. <section class="panel" id="file-list-panel">
  56. <div class="panel-body" style="height: 100%;overflow: auto;">
  57. <span>參考檔案</span>
  58. <ul class="nav nav-main" id="file-list"></ul>
  59. </div>
  60. </section>
  61. </div>
  62. </div>
  63. </div>
  64. </section>
  65. </div>
  66. <script src="https://vjs.zencdn.net/7.17.0/video.min.js"></script>
  67. <script>
  68. vm.mount('.body');
  69. var id = '<?php echo ($id); ?>';
  70. var folder = '<?php echo ($folder); ?>';
  71. </script>
  72. <script src="./script/js/video-play.js"></script>
  73. <?php include("bim-support-body.html"); ?>
  74. </section>
  75. </body>
  76. </html>