织梦标签随机颜色和字体大小

1、在/include/common.func.php 中加入如下函数

function getTagStyle()

{

$minFontSize=12; //最小字体大小,可根据需要自行更改

$maxFontSize=25; //最大字体大小,可根据需要自行更改

 return 'font-size:'.($minFontSize+lcg_value()*(abs($maxFontSize-$minFontSize))).'px;color:#'.dechex(rand(0,255)).dechex(rand(0,196)).dechex(rand(0,255));

}

如果你想指定只显示几个字体大小,而不是完全随机,请将上面的函数代码修改为:

function getTagStyle()

{

$sizearray = array('8','9','10','11','12','20');     //自定义字体大小,可根据需要自行修改

 return 'font-size:'.$sizearray[rand(0,count($sizearray))].'pt;color:#'.dechex(rand(0,255)).dechex(rand(0,196)).dechex(rand(0,255));

}

2、调用标签

{dede:tag row='50' getall='1' sort='hot'}

<a style="[field: total runphp=yes]@me=getTagStyle(); [/field: total];" title="[field:tag /]([field:total /])" href=https://www.91084.com/"[field:link/]">[field:tag /]</a>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wsfgwp.html