2021-01-29 10:54:33 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 视频
|
|
|
|
*
|
|
|
|
* @package custom
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="zh-CN">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<?php $this->need('public/include.php'); ?>
|
|
|
|
<!-- 视频页面需要用到的CSS及JS -->
|
2021-03-01 14:35:10 +00:00
|
|
|
<link rel="stylesheet" href="<?php $this->options->themeUrl('assets/css/joe.video.css?update=20210301'); ?>">
|
|
|
|
<script src="<?php $this->options->themeUrl('assets/js/joe.video.js?update=20210301'); ?>"></script>
|
2021-01-29 10:54:33 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id="Joe">
|
|
|
|
<?php $this->need('public/header.php'); ?>
|
|
|
|
<div class="joe_container">
|
|
|
|
<div class="joe_main">
|
2021-01-30 07:04:20 +00:00
|
|
|
<?php if (isset($_GET['vod_id'])) : ?>
|
|
|
|
<div class="joe_video__detail joe_video__contain">
|
|
|
|
<div class="joe_video__contain-title">影片简介</div>
|
|
|
|
<div class="joe_video__detail-info">
|
|
|
|
<p class="error">正在拼命加载中...</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-01-31 08:16:15 +00:00
|
|
|
<div class="joe_video__player joe_video__contain">
|
|
|
|
<div class="joe_video__contain-title">正在播放:</div>
|
2021-02-10 03:39:20 +00:00
|
|
|
<iframe allowfullscreen="true" class="joe_video__player-play" data-player="<?php echo $this->options->JCustomPlayer ? $this->options->JCustomPlayer : '/usr/themes/Joe/library/player.php?url=' ?>"></iframe>
|
2021-01-31 08:16:15 +00:00
|
|
|
</div>
|
2021-01-30 07:04:20 +00:00
|
|
|
<?php else : ?>
|
|
|
|
<div class="joe_video__type joe_video__contain">
|
|
|
|
<div class="joe_video__contain-title">视频分类</div>
|
|
|
|
<ul class="joe_video__type-list">
|
|
|
|
<li class="error">正在拼命加载中...</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div class="joe_video__list joe_video__contain">
|
|
|
|
<div class="joe_video__contain-title">视频列表</div>
|
2021-02-01 10:11:49 +00:00
|
|
|
<div class="joe_video__list-search">
|
|
|
|
<input class="input" type="text" placeholder="请输入影片名称...">
|
|
|
|
<button class="button">搜 索</button>
|
|
|
|
</div>
|
2021-01-30 07:04:20 +00:00
|
|
|
<div class="joe_video__list-item"></div>
|
|
|
|
</div>
|
|
|
|
<ul class="joe_video__pagination"></ul>
|
|
|
|
<?php endif; ?>
|
2021-01-29 10:54:33 +00:00
|
|
|
</div>
|
|
|
|
<?php $this->need('public/aside.php'); ?>
|
|
|
|
</div>
|
|
|
|
<?php $this->need('public/footer.php'); ?>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|