帖子内容页作者名称颜色循环
变通一下也可以做其他方式的循环转载:
⒈在 css_append.htm 加入
.authorinfo a.posterlink1 { color: 你喜欢的颜色; font-weight: 800; }
.authorinfo a.posterlink2 { color: 你喜欢的颜色; font-weight: 800; }
.authorinfo a.posterlink3 { color: 你喜欢的颜色; font-weight: 800; }
.authorinfo a.posterlink4 { color: 你喜欢的颜色; font-weight: 800; }
.authorinfo a.posterlink5 { color: 你喜欢的颜色; font-weight: 800; }
.authorinfo a.posterlink6 { color: 你喜欢的颜色; font-weight: 800; }
.authorinfo a.posterlink7 { color: 你喜欢的颜色; font-weight: 800; }
.authorinfo a.posterlink8 { color: 你喜欢的颜色; font-weight: 800; }
.authorinfo a.posterlink9 { color: 你喜欢的颜色; font-weight: 800; }
.authorinfo a.posterlink10 { color: 你喜欢的颜色; font-weight: 800; }
⒉在 viewthread.htm 查找
<!--{loop $postlist $post}-->
{subtemplate viewthread_node}
<!--{/loop}-->
⒊替换为
<!--{eval $I=0;}-->
<!--{loop $postlist $post}-->
<!--{eval $I++;}-->
{subtemplate viewthread_node}
<!--{/loop}-->
⒋在 viewthread_node.htm 第一行加入
<!--{if $post['number'] %10 ==9}--><!--{eval $I=9;}--><!--{/if}-->
<!--{if $post['number'] %10 ==8}--><!--{eval $I=8;}--><!--{/if}-->
<!--{if $post['number'] %10 ==7}--><!--{eval $I=7;}--><!--{/if}-->
<!--{if $post['number'] %10 ==6}--><!--{eval $I=6;}--><!--{/if}-->
<!--{if $post['number'] %10 ==5}--><!--{eval $I=5;}--><!--{/if}-->
<!--{if $post['number'] %10 ==4}--><!--{eval $I=4;}--><!--{/if}-->
<!--{if $post['number'] %10 ==3}--><!--{eval $I=3;}--><!--{/if}-->
<!--{if $post['number'] %10 ==2}--><!--{eval $I=2;}--><!--{/if}-->
<!--{if $post['number'] %10 ==1}--><!--{eval $I=1;}--><!--{/if}-->
<!--{if $post['number'] %10 ==0}--><!--{eval $I=10;}--><!--{/if}-->
⒌查找
<a href="space.php?uid=$post" class="posterlink" target="_blank">$post</a>
⒍替换为<a href="space.php?uid=$post" class="posterlink$I" target="_blank">$post</a>
⒎更新缓存
页:
[1]