元素模板为您解答:
解决方案:使用liunx服务器+宝塔环境
方法二:
找到\template\jingpin\index.php文件
替换第35行-42行或者自行对比添加。
<?php
$result = mysql_query('select * from mkcms_slideshow order by s_order desc');
while($row = mysql_fetch_array($result)){
?>
<div class="item stui-banner__item <?php if($i<1){echo 'active';} ?>">
<a class="stui-banner__pic" href="<?php echo $row['s_url'];?>" alt="<?php echo $row['s_name'];?>" target="_blank" style="background: url(<?php echo $row['s_picture'];?>) rgba(98,71,136,0) no-repeat; background-position: center center; background-size: cover; display: block; width: 100%; height: 100%;" title="<?php echo $row['s_name'];?>"></a>
</div>
<?php $i++;}?>