video-play.php 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. session_start();
  3. if (isset($_POST["id"])) {
  4. $id = $_POST["id"];
  5. }
  6. ?>
  7. <!doctype html>
  8. <html class="fixed">
  9. <head>
  10. <?php include("bim-support-header.html"); ?>
  11. <link href="https://vjs.zencdn.net/7.17.0/video-js.css" rel="stylesheet">
  12. <script src="./script/js/global.js"></script>
  13. <script src="./script/js/jquery.redirect.js"></script>
  14. <script>
  15. var userName = '<?php echo $_SESSION['name']; ?>';
  16. pageHeader = "BIM影音庫";
  17. </script>
  18. </head>
  19. <body>
  20. <section class="body">
  21. <!-- start: header -->
  22. <header-menu></header-menu>
  23. <!-- end: header -->
  24. <div class="inner-wrapper">
  25. <!-- start: sidebar -->
  26. <side-bar></side-bar>
  27. <!-- end: sidebar -->
  28. <section role="main" class="content-body">
  29. <header class="page-header">
  30. <h2 id="header">BIM影音網 - </h2>
  31. </header>
  32. <div class="row">
  33. <div class="col-md-9">
  34. <section class="panel" id="video-body">
  35. <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">
  36. <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>
  37. </video>
  38. </section>
  39. </div>
  40. <div class="col-md-3">
  41. <section class="panel" id="video-list-panel">
  42. <div class="panel-body" style="height: 100%;overflow: auto;">
  43. <span>相關影片</span>
  44. <ul class="nav nav-main" id="video-list"></ul>
  45. </div>
  46. </section>
  47. </div>
  48. <div class="col-md-3">
  49. <section class="panel" id="file-list-panel">
  50. <div class="panel-body" style="height: 100%;overflow: auto;">
  51. <span>參考檔案</span>
  52. <ul class="nav nav-main" id="file-list"></ul>
  53. </div>
  54. </section>
  55. </div>
  56. </div>
  57. </div>
  58. </section>
  59. </div>
  60. <script src="https://vjs.zencdn.net/7.17.0/video.min.js"></script>
  61. <script>
  62. vm.mount('.body');
  63. var id = '<?php echo ($id); ?>';
  64. </script>
  65. <script src="./script/js/video-play.js"></script>
  66. <?php include("bim-support-body.html"); ?>
  67. </section>
  68. </body>
  69. </html>