PHP and Web Technologies Freak
Scott Jehl has released jQuery Visualize, the plugin that groks HTML tables and generates lovely charts from it, all from a simple $(‘table’).visualize(); (lot’s of options for you to twiddle too if you want).
First, you create a bog standard table like:
<table border="0">
<caption>2009 Individual Sales by Category</caption>
<thead>
<tr>
<td></td>
<th>food</th>
<th>auto</th>
<th>household</th>
<th>furniture</th>
<th>kitchen</th>
<th>bath</th>
</tr>
</thead>
<tbody>
<tr>
<th>Mary</th>
<td>150</td>
<td>160</td>
<td>40</td>
<td>120</td>
<td>30</td>
<td>70</td>
</tr>
<tr>
<th>Tom</th>
<td>3</td>
<td>40</td>
<td>30</td>
<td>45</td>
<td>35</td>
<td>49</td>
</tr>
…repetitive rows removed for brevity.</tbody></table>
Then you visualize it. You end [...]
Jonathan Snook posted good CSS stuff on Text Rotation with CSS that takes a nice bit of markup like this:
<div class="example-date">
<span class="day">31</span>
<span class="month">July</span>
<span class="year">2009</span>
</div>
and converts it to:
all via the CSS:
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
yeah as you can see it’s working on IE too. Not bad ha?
I found this website about 2 or years ago. it’s freaking funny xD Here are some picture from the site;
I saw this and this post on smashin magazine.
You can download this sheets for free
CSS 3
HTML 5
Here is the list of some free feed directories;
http://www.feedest.com/feedAdd.cfm
http://www.2rss.com/index.php
http://www.fybersearch.com/add-url.php
High quality free Wordpress Themes have become harder and harder to find in the past year, with the influx of premium themes, more and more designers and developers are selling themes (and rightly so, they do amazing work). But, that aside, the quality is certainly there, and we are sure you will be impressed with [...]
I made a quick list for Free CSS theme sites.
Here is the list;
http://www.freecsstemplates.org/css-templates/
http://www.free-css-templates.com/
http://www.freecsstemplates.org/
http://csscreme.com/freecsstemplates/
http://www.templatemo.com/
http://www.solucija.com/free-templates
ClickHeat is a visual heatmap of clicks on a HTML page, showing hot and cold click zones.
Requirements
- on the browser’s client: Javascript (tested on Firefox 2.0, Internet Explorer 6 and 7, Konqueror…)
- on the server: either Linux or Windows (since ClickHeat 1.3 release), Apache or Lighttpd (other may work fine), PHP, the graphic library GD2 [...]
Navigation menus have to be intuitive, precise and easy-to-use. One simple, basic principle, which is common for all kinds of nav bars you would ever want to use for your projects.
You’ll find 50 user-friendly CSS based menu and navigation solutions.
11 CSS navigation menus : at Exploding Boy
12 more CSS Navigation Menus. : at Exploding Boy
14 [...]