自己美化的分页代码分享

jerry thinkphp 2015年11月19日 收藏
自己美化的分页代码分享

先看看效果

代码部分:
  1. //设置分页查询

  2.     $Data = M('think.Huodong_fenlei'); // 实例化Data数据对象
  3.     import('ORG.Util.Page');// 导入分页类
  4.     $count      = $Data->where($map)->count();// 查询满足要求的总记录数
  5.     $Page       = new Page($count,1);// 实例化分页类 传入总记录数并且每页显示5条记录
  6.     $nowPage = isset($_GET['p'])?$_GET['p']:1;
  7.     $list = $Data->where($map)->order('addtime desc')->page($nowPage.','.$Page->listRows)->select();
  8.     $show       = $Page->show();// 分页显示输出
  9.     $this->assign('page',$show);// 赋值分页输出
  10.     $this->assign('list',$list);// 赋值数据集    
  11.     $this->display();
CSS部分
  1. .result.page {
  2.     height: 40px;
  3.     width: auto;
  4.     text-align: center;
  5.     line-height: 40px;
  6.     padding-right: 30px;
  7.     padding-left: 30px;
  8.     margin: 15px auto 30px;

  9. }

  10. .result.page a {
  11.     height: 25px;
  12.     width: auto;
  13.     display: inline-block;
  14.     color: #333;
  15.     border: 1px solid #CCC;
  16.     text-decoration: none;
  17.     line-height: 25px;
  18.     padding-left: 5px;
  19.     padding-right: 5px;
  20.     background-color: #F9F9F9;
  21. }
  22. .result.page .current {
  23.     height: 25px;
  24.     width: auto;
  25.     padding-left: 8px;
  26.     padding-right: 8px;
  27.     line-height: 25px;
  28.     display: inline-block;
  29.     background-color: #09F;
  30.     color: #FFF;
  31. }
  32. .result.page a:hover {
  33.     background-color: #09F;
  34.     color:#FFF;
  35.         border: 1px solid #09F;
  36. }

附件page.zip ( 8.4 KB 下载:57 次 )