zoukankan      html  css  js  c++  java
  • 帝国 cms 导航条栏目切换样式

    灵动标签调用栏目导航技巧
    本节通过用灵动标签的SQL语句查询来调用栏目导航。(当然栏目导航一般我们用现成的showclasstemp或listshowclass栏目导航标签调用)

    灵动标签调用栏目导航技巧:
    例一:灵动标签显示栏目导航

    <table width="200" border="0" cellpadding="3" cellspacing="1" bgcolor="#4FB4DE">
    <tr>
    <td height="25"><strong><font color="#FFFFFF">栏目导航</font></strong></td>
    </tr>
    [e:loop={"select classid,classname from {$dbtbpre}enewsclass where bclassid=父栏目id order by myorder,classid desc",0,24,0}]
    <?php
    $classurl=sys_ReturnBqClassname($bqr,9);//取得栏目地址
    ?>
    <tr>
    <td height="25" bgcolor="#FFFFFF"><a href="<?=$classurl?>"><?=$bqr[classname]?></a></td>
    </tr>
    [/e:loop]
    </table>

    显示效果:
    例二:灵动标签显示栏目导航,且给当前终极栏目的背景设为蓝色

    <table width="200" border="0" cellpadding="3" cellspacing="1" bgcolor="#4FB4DE">
    <tr>
    <td height="25"><strong><font color="#FFFFFF">栏目导航</font></strong></td>
    </tr>
    [e:loop={"select classid,classname from {$dbtbpre}enewsclass where bclassid=父栏目id order by myorder,classid desc",0,24,0}]
    <?php
    $classurl=sys_ReturnBqClassname($bqr,9);//取得栏目地址
    $bgcolor="#FFFFFF";
    if($bqr[classid]==$GLOBALS[navclassid])//当前栏目ID
    {
    $bgcolor="#C3EFFF";
    }
    ?>
    <tr>
    <td height="25" bgcolor="<?=$bgcolor?>"><a href="<?=$classurl?>"><?=$bqr[classname]?></a></td>
    </tr>
    [/e:loop]
    </table>

    $GLOBALS[navclassid]为当前栏目ID。
    例三:灵动标签显示一级栏目导航,且在子栏目时也给当前一级栏目的背景设为蓝色

    <table width="200" border="0" cellpadding="3" cellspacing="1" bgcolor="#4FB4DE">
    <tr>
    <td height="25"><strong><font color="#FFFFFF">栏目导航</font></strong></td>
    </tr>
    [e:loop={"select classid,classname from {$dbtbpre}enewsclass where bclassid=0 order by myorder,classid desc",0,24,0}]
    <?php
    $classurl=sys_ReturnBqClassname($bqr,9);//取得栏目地址
    $bgcolor="#FFFFFF";
    if($GLOBALS[navclassid])
    {
    $fcr=explode('|',$class_r[$GLOBALS[navclassid]][featherclass]);
    $topbclassid=$fcr[1]?$fcr[1]:$GLOBALS[navclassid];//取得当前栏目的一级栏目ID
    if($bqr[classid]==$topbclassid)
    {
    $bgcolor="#C3EFFF";
    }
    }

    ?>
    <tr>
    <td height="25" bgcolor="<?=$bgcolor?>"><a href="<?=$classurl?>"><?=$bqr[classname]?></a></td>
    </tr>
    [/e:loop]
    </table>

    [e:loop={"select classid,classname from {$dbtbpre}enewsclass where bclassid=0 order by myorder,classid desc",0,24,0}]
    <?php
    $classurl=sys_ReturnBqClassname($bqr,9);//取得栏目地址
    $bgclass="";
    if($GLOBALS[navclassid])
    {
    $fcr=explode('|',$class_r[$GLOBALS[navclassid]][featherclass]);
    $topbclassid=$fcr[1]?$fcr[1]:$GLOBALS[navclassid];//取得当前栏目的一级栏目ID
    if($bqr[classid]==$topbclassid)
    {
    $bgclass="current";
    }
    }
    ?>
    <li ><a href="<?=$classurl?>" class="<?=$bgclass?>"><strong><?=$bqr[classname]?></strong></a></li>
    [/e:loop]



  • 相关阅读:
    oracle使用expdp备份数据库
    用Setuptools构建和分发程序包
    C#5.0-原生异步编程方式
    任务并行库
    线程-线程池1
    多线程-3(同步)
    多线程-2(线程同步)
    线程---1
    高性能-GC3
    高性能-GC2
  • 原文地址:https://www.cnblogs.com/wenus/p/2418488.html
Copyright © 2011-2022 走看看