http://onepotcooking.com/jackpax/ajax/
As an exercise I re-did my class 8 blog as an AJAX app using jQuery. Anyone can view the blog, but to post a message or comment you must log in
Friday, December 5, 2008
Using Ajax for blog
Saturday, November 22, 2008
Thursday, November 20, 2008
CMS Demos
Wordpress: http://www.mycenturyweb.com/
Commercial use of Wordpress: http://www.inhabitny.com/blog/
Joomla: http://www.mycenturyweb.com/joomla/
Xoops: http://www.mycenturyweb.com/xoops/
Drupal: http://www.mycenturyweb.com/drupal/
ZenCart: http://www.mycenturyweb.com/zencart/
Monday, November 17, 2008
Tiles
Tiles have been used for background texture (think parchment paper), but they can also be used for CSS rollovers.
A simple CSS rollover using a 2px wide vertical tile:
#menuTop a{
padding:2px;
color:#000;
background-image:url('img/menuTile.jpg') repeat-x;
text-decoration:none;
}
#menuTop a:hover{
background-image:url('img/menuOverTile.jpg') repeat-x;
color:#cc0000;
}
And of course a tile can be used for a gradient effect in the page top:
#pgTop{
border-bottom:1px solid #cc0000;
background-image:url('img/pgTopTile.jpg');
}