Products
96SEO 2025-01-18 10:57 99
因为wel。用调后化地lcms的缩略图不支持链接,火车头发布缩略图链接无效,只能本地化后调用。
找到主题下的thread.htm flat.htm list.htm thread_list.htm thread_list.inc.htm read.htm文件中的列表缩略图,比如我的主题下的代码:
<div class="item-img">
<a class="item-img-inner" href="<?php echo $_thread['url'];?>" title="<?php echo $_thread['subject'];?>">
<img width="480" height="300" src="<?php echo view_path(),'img/nopic.png';?>" class="attachment-default size-default wp-post-image j-lazy" alt="<?php echo $_thread['subject'];?>" loading="lazy" data-original="<?php echo $_thread['icon_fmt'];?>">
</a>
</div>
替换为以下代。应对要中s码:除了php获取目录图以外,源代码 data-original 替换了,增加了 title-overlay字段。css中要对应。
<?php
// 指定图片目录
$imageDir = $_SERVER['DOCUMENT_ROOT'] . "/imgrand/";
// 获取目录中的所有图片文件
$imageFiles = glob($imageDir . "*.{jpg,png,gif,jpeg,webp}", GLOB_BRACE);
// 随机选择一个图片
if (!empty($imageFiles)) {
$randomImage = str_replace($_SERVER['DOCUMENT_ROOT'], '', $imageFiles[array_rand($imageFiles)]);
} else {
$randomImage = "/imgrand/default.jpg"; // 如果没有图片,使用默认图片
}
?>
<div class="item-img">
<a class="item-img-inner" href="<?php echo $_thread['url'];?>" title="<?php echo $_thread['subject'];?>">
<img class="j-lazy" src="<?php echo view_path();?>skin/images/lazy.png" data-original="<?php echo $randomImage; ?>" width="100%" height="auto" alt="<?php echo $_thread['subject'];?>">
<div class="title-overlay"><?php echo $_thread['subject']; ?></div>
</a>
</div>
<?php
// 指定图片目录
$imageDir = $_SERVER['DOCUMENT_ROOT'] . "/imgrand/";
// 获取目录中的所有图片文件
$imageFiles = glob($imageDir . "*.{jpg,png,gif,jpeg,webp}", GLOB_BRACE);
// 随机选择一个图片
if (!empty($imageFiles)) {
$randomImage = str_replace($_SERVER['DOCUMENT_ROOT'], '', $imageFiles[array_rand($imageFiles)]);
} else {
$randomImage = "/imgrand/default.jpg"; // 如果没有图片,使用默认图片
}
?>
<div class="item-img">
<a class="item-img-inner" href="<?php echo $_thread['url'];?>" title="<?php echo $_thread['subject'];?>">
<img class="j-lazy" src="<?php echo view_path();?>skin/images/lazy.png" data-original="<?php echo $randomImage; ?>" width="100%" height="auto" alt="<?php echo $_thread['subject'];?>">
<div class="title-overlay0"><?php echo $_thread['subject']; ?></div> <!--0是侧边栏-->
</a>
</div>
tag标签页,tag.htm
<?php
// 指定图片目录
$imageDir = $_SERVER['DOCUMENT_ROOT'] . "/imgrand/";
// 获取目录中的所有图片文件
$imageFiles = glob($imageDir . "*.{jpg,png,gif,jpeg,webp}", GLOB_BRACE);
// 随机选择一个图片
if (!empty($imageFiles)) {
$randomImage = str_replace($_SERVER['DOCUMENT_ROOT'], '', $imageFiles[array_rand($imageFiles)]);
} else {
$randomImage = "/imgrand/default.jpg"; // 如果没有图片,使用默认图片
}
?>
<div class="item-img"> <a class="item-img-inner" href="<?php echo $_thread['url'];?>" title="<?php echo $_thread['subject'];?>" target="_blank"> <img class="j-lazy" src="<?php echo $_thread['icon_fmt'];?>" data-original="<?php echo $randomImage; ?>" width="100%" height="auto" alt="<?php echo $_thread['subject'];?>"> </a> <a class="item-category" href="<?php echo $_thread['forum_url'];?>" target="_blank"><?php echo $_thread['forum_name'];?></a> </div>
<?php
// 指定图片目录
$imageDir = $_SERVER['DOCUMENT_ROOT'] . "/imgrand/";
// 获取目录中的所有图片文件
$imageFiles = glob($imageDir . "*.{jpg,png,gif,jpeg,webp}", GLOB_BRACE);
// 随机选择一个图片
if (!empty($imageFiles)) {
$randomImage = str_replace($_SERVER['DOCUMENT_ROOT'], '', $imageFiles[array_rand($imageFiles)]);
} else {
$randomImage = "/imgrand/default.jpg"; // 如果没有图片,使用默认图片
}
?>
<div class="item-img">
<a class="item-img-inner" href="<?php echo $_thread['url'];?>" title="<?php echo $_thread['subject'];?>">
<img class="j-lazy" src="<?php echo view_path();?>skin/images/lazy.png" data-original="<?php echo $randomImage; ?>" width="100%" height="auto" alt="<?php echo $_thread['subject'];?>">
<div class="title-overlay0"><?php echo $_thread['subject']; ?></div> <!--0是侧边栏-->
</a>
</div>
CSS中:
.item-img {
position: relative; /* 设置相对定位以便内部元素绝对定位 */
width: 100%;
height: 100%;
overflow: hidden; /* 避免文字溢出图片边界 */
}
.item-img-inner img {
display: block;
width: 100%;
height: 100%;
}
.title-overlay0 {
position: absolute;
top: 8px;
left: 0;
width: 100%;
background: rgba(0, 0, 0, 0.4); /* 半透明黑色背景 */
color: #fff; /* 白色文字 */
text-align: center;
padding: 10px 0;
font-size: 8px;
}
.title-overlay {
position: absolute;
top: 18px;
left: 0;
width: 100%;
background: rgba(0, 0, 0, 0.5); /* 半透明黑色背景 */
color: #fff; /* 白色文字 */
text-align: center;
padding: 10px 0;
font-size: 12px;
}
Demand feedback