DedeCMS列表页隔行/多行随意换色
2023/03/11 10:03 魔司收录网 已浏览107次
在很多列表调用的时候都需要有隔行换色或者多行不同颜色,特别在全通式的首页轮展图的时候,要想实现轮展图背景随着图片的更换,超过三张或多张的时候,隔行换色已经不能解决问题了,在原来的隔行换色的基础上,进行小小的修改就可以实现这样的功能。
列表调用隔行换色
全通式首页轮展图背景色更换
照片墙形式
标签说明:
1 |
arclist 标签下使用 [field:global.autoindex/] 默认从1开始 |
2 |
channel 标签下使用 [field:global.autoindex/] 默认从0开始 |
3 |
channelartlist 标签下使用 {dede:global.itemindex/} 默认从1开始 |
5 |
arclist 从0开始[field:global name=autoindex runphp= "yes" ]@me=@me-1;[/field:global] |
6 |
channel 从1开始[field:global name=autoindex runphp= "yes" ]@me=@me+1;[/field:global][field:typename/] |
7 |
channelartlist 从0开始{dede:global name=itemindex runphp= 'yes' }@me=@me-1;{/dede:global} |
9 |
channelartlist 标签下使用 {dede:global name= 'itemindex' runphp= 'yes' }@me;{/dede:global} |
|
隔行换色(增加样式),list同arclist
03 |
{dede:list pagesize= '50' } |
05 |
[field:global runphp= 'yes' name=autoindex] |
08 |
if ((@me%2)==0) @me=$a; |
11 |
<span class= "date" >[[field:typelink/]][field:pubdate function = "MyDate('Y-m-d',@me)" /]</span> |
12 |
<a href= "[field:arcurl /]" >[field:title /]</a> |
|
如果运用channel弄隔行换色,需要自增从1开始,精简写法如下:
3 |
{dede:channel row=6 typeid= '' } |
4 |
[field:global name=autoindex runphp= "yes" ]((@me+1) % 2 == 0)?@me= "<li class=\"last\">" :@me= "<li>" ;[/field:global] |
5 |
<h4 class= "title" >[field:title/]</h4> |
|
隔3行(n行)换色(增加样式)精简写法,替换橙色字体部分
3 |
{dede:arclist row=6 typeid= '' } |
4 |
[field:global name=autoindex runphp= "yes" ](@me % 3 == 0)?@me= "<li class=\"last\">" :@me= "<li>" ;[/field:global] |
5 |
<h4 class= "title" >[field:title/]</h4> |
|
多行随意换色(增加样式)
03 |
{dede:arclist typeid= '8' row= '6' orderby= 'weight' } |
04 |
[field:global runphp= 'yes' name=autoindex] |
05 |
$a= "<li class='gd1'>" ; |
06 |
$b= "<li class='gd2'>" ; |
07 |
$c= "<li class='gd3'>" ; |
08 |
$d= "<li class='gd4'>" ; |
09 |
$e= "<li class='gd5'>" ; |
10 |
$f= "<li class='gd6'>" ; |
11 |
if ((@me/1)==1) @me=$a; <!--调用的<li>次数(第一次调用)能被1整除,则该<li>对应$a的class= 'gd_1' --> |
12 |
else if ((@me/2)==1) @me=$b;<!--调用的<li>次数(第二次调用)能被2整除,则该<li>对应$b的class= 'gd_2' --> |
13 |
else if ((@me/3)==1) @me=$c;<!--调用的<li>次数(第三次调用)能被3整除,则该<li>对应$c的class= 'gd_3' --> |
14 |
else if ((@me/4)==1) @me=$d;<!--调用的<li>次数(第四次调用)能被4整除,则该<li>对应$d的class= 'gd_4' --> |
15 |
else if ((@me/5)==1) @me=$e;<!--调用的<li>次数(第五次调用)能被5整除,则该<li>对应$e的class= 'gd_5' --> |
16 |
else if ((@me/6)==1) @me=$f;<!--调用的<li>次数(第六次调用)能被6整除,则该<li>对应$f的class= 'gd_6' --> |
19 |
<a href= "[field:arcurl/]" ><img src= "[field:litpic/]" width= "" height= "" alt= '[field:title function=' html2text(@me)/][field:spacename/]' /></a> |
20 |
<p><a href= '[field:arcurl/]' >[field:title/]</a></p> |
|
精简写法
3 |
{dede:arclist row=6 typeid= '' } |
4 |
<li class=gd_[field:global.autoindex]> |
5 |
<h4 class= "title" >[field:title/]</h4> |
|
公共css样式部分
这里注意每张图的在调用的时候width和height可以为空,如果是或者乱填都没关系,靠样式进行定义。
01 |
<style type = "text/css" > |
02 |
.gd1{width:750px;height:330px} |
03 |
.gd2{width:370px;height:165px} |
04 |
.gd3{width:185px;height:165px} |
05 |
.gd4{width:185px;height:165px} |
06 |
.gd5{width:335px;height:247px} |
07 |
.gd6{width:335px;height:247px} |
08 |
.gd1 img{width:750px;height:330px} |
09 |
.gd2 img{width:370px;height:165px} |
10 |
.gd3 img{width:185px;height:165px} |
11 |
.gd4 img{width:186px;height:165px} |
12 |
.gd5 img{width:335px;height:247px} |
13 |
.gd6 img{width:335px;height:247px} |
|