Friday, March 27, 2009
Saturday, March 14, 2009
Javascript Video
http://developer.yahoo.com/yui/theater
see Douglas Crockford — "The JavaScript Programming Language" Part 1.
Yahoo! JavaScript Architect Douglas Crockford provides a comprehensive introduction to the JavaScript Programming Language
see Douglas Crockford — "The JavaScript Programming Language" Part 1.
Yahoo! JavaScript Architect Douglas Crockford provides a comprehensive introduction to the JavaScript Programming Language
Friday, March 13, 2009
Monday, March 9, 2009
Popup Javascript Calendar
http://onepotcooking.com/jackpax/calendar/popUpCalendar.htm
This adds a date picker to a text box using a small javascript file and a css file for the calendar formatting.
This adds a date picker to a text box using a small javascript file and a css file for the calendar formatting.
Adding Flash to a Web Page with Javascript
http://code.google.com/p/swfobject/
http://code.google.com/p/swfobject/wiki/SWFObject_2_0_documentation
SWFObject is an easy-to-use and standards-friendly method to embed Flash content, which utilizes one small JavaScript file
http://code.google.com/p/swfobject/wiki/SWFObject_2_0_documentation
SWFObject is an easy-to-use and standards-friendly method to embed Flash content, which utilizes one small JavaScript file
Trifecta css rollovers
What makes the Trifecta button the Trifecta?
http://www.search-this.com/website-design/css-rollover-buttons/
http://www.search-this.com/website-design/css-rollover-buttons/
Friday, March 6, 2009
Background 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');
}
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');
}
Subscribe to:
Posts (Atom)