帝国CMS教程
帝国CMS模板网>帝国CMS教程

帝国cms6.6随机颜色大小展示tags

来源:帝国CMS模板网 作者:帝国CMS教程 时间:2011-06-06
浏览:7.9千+ 收藏 点赞(34)

介绍下帝国cms6.6随机颜色大小展示tags的方法教程,请看以下调用教程

<div class="hotlist" id="ctag">
[showtags]'',60,0,'num desc',0,'s,r','',1,''[/showtags]
</div>
<script>   
var bcolor = document.getElementById("ctag").getElementsByTagName("a");   
for(i=0;k=bcolor.length,i<k;i++)   
{   
var str = "0123456789ABCDEF";   
var t = "#";   
for(j=0;j<6;j++)   
{t = t+ str.charAt(Math.random()*str.length);}   
var fsize;   
fsize=parseInt(Math.random()*(20)+6);   
bcolor[i].style.color=t;   
bcolor[i].style.fontSize=fsize + "px";   
}   
</script>
标签
帝国CMS模板