Welcome Guest, Not a member yet? Register   Sign In
Create a tag cloud (kind of)
#12

[eluser]drewbee[/eluser]
Why not have the font size increase based on the views? Lets say for only 1 occurance of a word, you will display it at 10px up to a maximum of 30px

Code:
$base = 10; // 10 px
$max = 30; // 30 px
$size = $base * $row->total;

if ($size > $max)
{
    $size = $max;
}
echo '<span style="font-size: ' . $size . 'px;">' . $row->word_list . '</span>&nbsp;&nbsp;';

There you go. you have a dynamically changing font size based on word count just by using simple math with a minimum of 10 px and a maximum of 30px


Messages In This Thread
Create a tag cloud (kind of) - by El Forum - 11-13-2008, 03:53 PM
Create a tag cloud (kind of) - by El Forum - 11-13-2008, 03:57 PM
Create a tag cloud (kind of) - by El Forum - 11-13-2008, 03:59 PM
Create a tag cloud (kind of) - by El Forum - 11-13-2008, 04:00 PM
Create a tag cloud (kind of) - by El Forum - 11-13-2008, 04:11 PM
Create a tag cloud (kind of) - by El Forum - 11-13-2008, 04:19 PM
Create a tag cloud (kind of) - by El Forum - 11-13-2008, 04:29 PM
Create a tag cloud (kind of) - by El Forum - 11-14-2008, 07:32 AM
Create a tag cloud (kind of) - by El Forum - 11-14-2008, 03:04 PM
Create a tag cloud (kind of) - by El Forum - 11-14-2008, 03:12 PM
Create a tag cloud (kind of) - by El Forum - 11-14-2008, 03:41 PM
Create a tag cloud (kind of) - by El Forum - 11-14-2008, 03:57 PM



Theme © iAndrew 2016 - Forum software by © MyBB