Tag: 颜色预览模式: 普通 | 列表
10-04
14

dede:hotword 随机颜色效果

修改 hotwords.lib.php
$hotword .= " <a href='".$cfg_phpurl."/search.php?keyword=".urlencode($row['keyword'])."' name='mytag'>".$row['keyword']."</a> ";

在模板页面配置:
{dede:hotwords num='18' subday='365' maxlength='16' /}
<script>
var obj = document.getElementsByName("mytag");
for(i=0;i<obj.length;i++)
{

查看更多...

Tags: dede 随机 颜色

分类:OpenSource | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 329
09-06
24

java 随机生成时间

private Color getRandColor(int fc, int bc) { // 给定范围获得随机颜色  
     Random random = new Random();  
    if (fc > 255)  
       fc = 255;  
    if (bc > 255)  
       bc = 255;  
    int r = fc + random.nextInt(bc - fc);  
    int g = fc + random.nextInt(bc - fc);  
    int b = fc + random.nextInt(bc - fc);  

查看更多...

Tags: 随机 时间 颜色

分类:学习 | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 606