PHP generates tag functions of different colors and sizes

Source: Internet
Author: User
The tags on other websites are of different colors, and the tag tags of different sizes are very good. Here we will share two functions to make it easier for users who need them.

The tags on other websites are of different colors, and the tag tags of different sizes are very good. Here we will share two functions to make it easier for users who need them.

The Code is as follows:


Function getTagStyle (){
$ MinFontSize = 8; // minimum font size, which can be changed as needed
$ MaxFontSize = 18; // maximum font size, which can be changed as needed
Return 'font-size :'. ($ minFontSize + lcg_value () * (abs ($ maxFontSize-$ minFontSize ))). 'px; color :#'. dechbx (rand (0,255 )). dechbx (rand (0,196 )). dechex (rand (0,255 ));
}

This function outputs random styles, including font-size and color.

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

The Code is as follows:


Function getTagStyle (){
$ Sizearray = array ('8', '9', '10', '11', '12', '20'); // customize the font size, can be modified as needed
Return 'font-size :'. $ sizearray [rand (0, count ($ sizearray)]. 'pt; color :#'. dechbx (rand (0,255 )). dechbx (rand (0,196 )). dechex (rand (0,255 ));
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.