+
+ $item) {
+
+ //输出分类名称
+ echo <<
+ >>更多
+ {$item['name']}
+
+
+eof;
+
+ $category = $viewData['scanResults'][$item['id']];
+
+ if (!empty($category['files'])) { //一级目录支持,目录下直接存放视频文件
+
+ $cate_files = Html::sortFilesByCreateTime($category['files'], 'desc'); //按创建时间排序
+ foreach($cate_files as $index => $file) {
+ //跳过非.url文件,且最多显示 8 个
+ if (!in_array($file['extension'], $videoExts) || empty($file['shortcut']) || $index >= 8) {
+ continue;
+ }
+
+ $snapshot = !empty($file['cover']) ? $imgPreffix . $file['cover'] : '/img/default.png';
+ $title = !empty($file['title']) ? Html::mb_substr($file['title'], 0, 33, 'utf-8') : $file['filename'];
+
+ $platform = Html::getShareVideosPlatform($file['shortcut']['url']);
+
+ $pubDate = date('m/d', $file['fstat']['ctime']);
+
+ $imgSrc = $index < 8 ? " src=\"{$snapshot}\"" : '';
+ $imgAlt = $index < 8 ? " alt=\"{$title}\"" : '';
+
+ echo <<
+
+
+
+eof;
+ }
+ }
+
+ echo <<
+eof;
+
+ }
+}
+?>
+
+
diff --git a/www/css/tajian.css b/www/css/tajian.css
index 02c9e86..a1276dc 100644
--- a/www/css/tajian.css
+++ b/www/css/tajian.css
@@ -88,7 +88,8 @@ a:link{text-decoration:none;}
-webkit-line-clamp: 2; /* 这里是超出几行省略 */
overflow: hidden;
}
-
+.tgroup{padding-right:5px;padding-top:10px}
+.morelink{float:right;font-size:13px;margin-top:3px}
/* 首页 end*/
/* 联系我们 */