Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The method of realizing Color label Cloud by DEDECMS

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

Editor to share with you the method of realizing color tag cloud in DEDECMS. I hope you will gain a lot after reading this article. Let's discuss it together.

How to realize Color label Cloud with DEDECMS

DEDECMS Color label Cloud-realize label (TAG) random color and size

Function description:

To achieve the effect of tag cloud, including tags have different colors and font sizes, etc., colors and font sizes are randomly displayed, you can change the code to control its range.

Modify method:

1. Add the following function to / include/common.func.php.

Function getTagStyle () {$minFontSize=8; / / minimum font size, you can change $maxFontSize=18; / / maximum font size as needed, and you can change return 'font-size:'. ($minFontSize+lcg_value () * (abs ($maxFontSize-$minFontSize).' px;color:#'.dechex (rand (0255)) .dechex (rand (0196)) .dechex (rand (0255));}

The function is used to output random styles, including font-size and color.

If you want to specify that only a few font sizes are displayed instead of being completely random, change the above function code to:

Function getTagStyle () {$sizearray = array); / / Custom font size, you can modify return 'font-size:'.$ sizearray as needed.' pt;color:#'.dechex (rand (0255)) .dechex (rand (0196)) .dechex (rand (0255));}

2. Call the tag in the template with the following code.

{dede:tag row='45' getall='1' sort='hot'} [field:tag /] {/ dede:tag}

3. Generate the corresponding html,OK in the background, depending on the effect.

After reading this article, I believe you have a certain understanding of DEDECMS to achieve color label cloud, want to know more related knowledge, welcome to follow the industry information channel, thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report