zoukankan      html  css  js  c++  java
  • 帝国cms 列表内容模板两种样式切换遍历

    if($no%2 != 0)
    {
     $lstemp='<li>
         <div class="case-l fl fadeInDown wow">
             <img src="'.$r[titlepic].'">
         </div>
         <div class="case-r fr fadeInUp wow" data-wow-delay="0.5s">
             <div class="case-rnr">
                 <h1>'.$r[title].'</h1>
                 <p>'.$r[smalltext].'</p>
                 <a href="'.$r[titleurl].'">MORE >></a>
             </div>
         </div>
     </li>';
    }else{
     $lstemp='<li class="case01">
            <div class="case-r fl fadeInDown wow">
             <div class="case-rnr">
                 <h1>'.$r[title].'</h1>
                 <p>'.$r[smalltext].'</p>
                 <a href="'.$r[titleurl].'">MORE >></a>
             </div>
         </div>
         <div class="case-l fr fadeInUp wow" data-wow-delay="0.5s">
             <img src="'.$r[titlepic].'">
         </div>
     </li>';
    
    }
    
     $listtemp="$lstemp";
    

     记得开启列表内容模板的使用程序代码

     切换遍历的同时也可以调取发布时间(年月日)

    $newstime=$r[newstime];//获取信息发布时间
    $year=format_datetime($newstime,"Y");//单独获取年
    $month=format_datetime($newstime,"m");//单独获取月
    $day=format_datetime($newstime,"d");//单独获取日
        
    if($no%2 != 0)
        {
        $lstemp='<li>
          <a href="'.$r[titleurl].'" class="zlhzPic fl">
            <img src="'.$r[titlepic].'">
          </a>
          <div class="zlhzTxt fr"><a href="">
              <h1>'.$r[title].'</h1>
              <span>'.$year.'-'.$month.'-'.$day.'</span>  /*这里就是获取文章发布的年 月 日*/
              <p>
                '.$r[smalltext].'
              </p>
              <h2>查看详情</h2>
            </a>
          </div>
        </li>';
      }else{
        $lstemp='<li>
          <div class="zlhzTxt fl"><a href="'.$r[titleurl].'">
              <h1>'.$r[title].'</h1>
              <span>'.$year.'-'.$month.'-'.$day.'</span>
              <p>
                '.$r[smalltext].'
              </p>
              <h2>查看详情</h2>
            </a>
          </div>
          <a href="'.$r[titleurl].'" class="zlhzPic fr">
            <img src="'.$r[titlepic].'">
          </a>
        </li>';
      }
      $listtemp="$lstemp";
    

      

  • 相关阅读:
    log4net 发布到生产环境不写日志的解决方法--使用 NLog日志
    centos 下Supervisor 守护进程基本配置
    centos 7 下安装Nginx
    Haproxy+asp.net +RedisSessionStateProvider 完美实现负载均衡,并且session保持
    centos之Haproxy 负载均衡学习笔记
    改进初学者的PID-介绍
    实现Modbus TCP多网段客户端应用
    有一种亲切是手机
    实现Modbus ASCII多主站应用
    爱好
  • 原文地址:https://www.cnblogs.com/programmer-1/p/12672329.html
Copyright © 2011-2022 走看看