在网上找了很多发现都是wordpress的居我我的系统是自己写的所以没有合适的,来想自己想了一下原理非常的简单
我们定义10个不这彩色css然后再由程序随机生成不同样式名,这样就可以了,具体实现如下。
我们先定义css代码
代码如下 |
复制代码 |
.tag{ margin:0 0 20px; width:230px; height:234px;padding:10px; line-height:28px; overflow:hidden;}
.tag a{ padding:5px;}
.tag1{ font-size:12px;}
.tag2{ font-size:12px; color:#C60;}
.tag3{ font-size:12px; color:#F30;}
.tag4{ font-size:15px;}
.tag5{ font-size:15px; color:#090;}
.tag6{ font-size:15px; color:#990;}
.tag7{ font-size:18px;}
.tag8{ font-size:18px; color:#06F;}
.tag9{ font-size:18px; color:#09F;}
.tag10{ font-size:20px; }
.tag11{ font-size:20px; color:#6C0}
.tag12{ font-size:20px; color:#F96}
|
好了,下一步不是php程序了
代码如下 |
复制代码 |
function getKeyZt($s,$e)
{
$sql = "select title from 你的数据表 order by RAND() desc limit $s,$e";
$result=mysql_query($sql) or die(mysql_error());
while($rs=mysql_fetch_array($result))
{
//$c =
$class ='tag'.rand(1,12);
echo ''.$rs['title'].'';
}
}
|
生成的html代码如下
具体的效果如下