Posted in Javascript onJune 11, 2010
1. 进入"管理 >> 配置"面板
2. 在"通过CSS定制页面风格"文本框内, 添加:
/***********tag cloud css****************/ #tagCloud { text-align:center; overflow:hidden; } #tagCloud a{ padding: 0 5px; line-height:1.5em; display:inline-block; }
3. 在"页脚Html代码"文本框内, 添加:
<script> /***********tag cloud script****************/ if($("#taglist").length>0) { var dict = {}; $("#taglist td").has("a").has("span").each(function(i, x){ dict[$("a", this).text()] = $("span", this).text().replace(/[)(]/g, ""); }); $("<div>").attr("id", "tagCloud").appendTo("div#mainContent"); for(var k in dict) { var sz = (dict[k] * 4) + 12; $("<a>") .attr("href", "http://www.cnblogs.com/k-sharp/tag/"+escape(k)+"/") .attr("title", dict[k]) .css("font-size", sz + "px") .text(k) .appendTo("#tagCloud"); } $("#taglist").remove(); } </script>
cnblogs TagCloud基于jquery的实现代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@