1 Star 0 Fork 27

刘丹玉/Joe再续前缘版

forked from 易航/Joe再续前缘版 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
video.php 1.84 KB
一键复制 编辑 原始数据 按行查看 历史
易航 提交于 2023-06-27 00:12 . 目录重构,资源本地化
<?php
/**
* 视频
*
* @package custom
*
**/
?>
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<?php $this->need('module/head.php'); ?>
<link rel="stylesheet" href="<?= joe\theme_url('assets/css/joe.video.min.css'); ?>">
<script src="<?= joe\theme_url('assets/js/joe.video.js'); ?>"></script>
</head>
<body>
<div id="Joe">
<?php $this->need('module/header.php'); ?>
<div class="joe_container">
<div class="joe_main">
<?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>
<div class="joe_video__player joe_video__contain">
<div class="joe_video__contain-title">正在播放:</div>
<iframe allowfullscreen="true" class="joe_video__player-play" data-player="<?php $this->options->JCustomPlayer ? $this->options->JCustomPlayer() : Helper::options()->themeUrl('module/player.php?url=') ?>"></iframe>
</div>
<?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>
<div class="joe_video__list-search">
<input class="input" type="text" placeholder="请输入影片名称...">
<button class="button">搜 索</button>
</div>
<div class="joe_video__list-item"></div>
</div>
<ul class="joe_video__pagination"></ul>
<?php endif; ?>
</div>
<?php $this->need('module/aside.php'); ?>
</div>
<?php $this->need('module/footer.php'); ?>
</div>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/xiaoyuwifi/Joe.git
git@gitee.com:xiaoyuwifi/Joe.git
xiaoyuwifi
Joe
Joe再续前缘版
master

搜索帮助