| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- session_start();
- if (isset($_POST["id"])) {
- $id = $_POST["id"];
- }
- $folder = "";
- if (isset($_POST["folder"])) {
- $folder = $_POST["folder"];
- }
- ?>
- <!doctype html>
- <html class="fixed">
- <head>
- <?php include("bim-support-header.html"); ?>
- <link href="https://vjs.zencdn.net/7.17.0/video-js.css" rel="stylesheet">
- <script src="./script/js/global.js"></script>
- <script src="./script/js/jquery.redirect.js"></script>
- <script>
- var userName = '<?php echo $_SESSION['name']; ?>';
- pageHeader = "亞新教育訓練平台";
- </script>
- </head>
- <body>
- <section class="body">
- <!-- start: header -->
- <header-menu></header-menu>
- <!-- end: header -->
- <div class="inner-wrapper">
- <!-- start: sidebar -->
- <side-bar></side-bar>
- <!-- end: sidebar -->
- <section role="main" class="content-body">
- <header class="page-header">
- <h2 id="header">{{pageHeader}}</h2>
- <button class="mb-xs mt-xs mr-xs btn btn-default right" type="button" style="float: right;" onclick="returnToList(folder)">回上層</button>
- </header>
- <div class="row">
- <div class="col-md-9">
- <section class="panel" id="video-body">
- <video id="my-video" class="video-js" controls preload="auto" width="640" height="264" data-setup="{}">
- <source src="./AttachAndJoinWalls.m3u8">
- </video>
- <div class="panel-body" style="color:black;">
- <h4>課程簡介</h4>
- <text id="description"></text>
- </div>
- </section>
- </div>
- <div class="col-md-3">
- <section class="panel" id="video-list-panel">
- <div class="panel-body" style="height: 100%;overflow: auto;">
- <span>相關影片</span>
- <ul class="nav nav-main" id="video-list"></ul>
- </div>
- </section>
- </div>
- <div class="col-md-3">
- <section class="panel" id="file-list-panel">
- <div class="panel-body" style="height: 100%;overflow: auto;">
- <span>參考檔案</span>
- <ul class="nav nav-main" id="file-list"></ul>
- </div>
- </section>
- </div>
- </div>
- </div>
- </section>
- </div>
- <script src="https://vjs.zencdn.net/7.17.0/video.min.js"></script>
- <script>
- vm.mount('.body');
- /*var id = '<?php echo ($id); ?>';
- var folder = '<?php echo ($folder); ?>';*/
- </script>
- <!-- <script src="./script/js/video-play.js"></script> -->
- <?php include("bim-support-body.html"); ?>
- </section>
- </body>
- </html>
|