- 论坛徽章:
- 0
|
require_once('Pager/Pager.php');
$count = 1000;
$params = array(
'totalItems' => $count,
'mode' => 'Sliding',
'delta' => 3,
'perPage' => 10,
//'append' => false,
//'fileName' => '%d',
'urlVar' => 'page',
'separator' => '',
'firstPagePre' => '',
'firstPagePost' => '',
'lastPagePre' => '',
'lastPagePost' => '',
'prevImg' => ',
'nextImg' => '>',
'spacesBeforeSeparator' => 0,
'spacesAfterSeparator' => 0,
'curPageLinkClassName' => 'current',
'altFirst' => '首页',
'altPrev' => '上页',
'altNext' => '下页',
'altLast' => '尾页',
'altPage' => '页码'
);
$pager = & Pager::factory($params);
$links = $pager->getLinks();
?>
pagination
div.pagination {
padding: 3px;
margin: 3px;
}
div.pagination a {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 1px solid #AAAADD;
text-decoration: none;
color: #000099;
}
div.pagination a:hover, div.pagination a:active {
border: 1px solid #000099;
color: #000;
}
div.pagination span.current {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 1px solid #000099;
font-weight: bold;
background-color: #000099;
color: #FFF;
}
echo $links['all']; ?>
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/15677/showart_491337.html |
|