We're working on updating digital graphics for “new stuff” to demonstrate different JavaScript and/or CSS methods for displaying images (artwork or photos) without depending on a Flash player downloading.

This page currently mirrors format of Sketch.

For alternate approaches, see sketch/increment.html and sketch/newRolls.html.

 

Back to Top of Page


Your computer shows today is . ENJOY!

Ahem, excuse us! If you can see this message, your browser is not CSS2 complaint. This site looks better in browsers that support Web standards.

Back to Top of Page

 


Note for JavaScript rollovers:
When images and their path ('src') are pre-defined in script,
— e.g., <script> sig1=new Image(); sig1.src="sigOut.jpg"; sig2=new Image(); sig2.src="sigOver.gif"; </script> —
reference to image “proxies” thus pre-defined are not 'quoted' as string literals in link:
<a href="#nogo" onClick="document.images['sig'].src=sig2.src"> <img src="sigOut.jpg" name="sig" alt="rollover image" > </a>

But, when images and their src/path are NOT pre-defined in a <script> for pre-loading,
the direct reference to their name and path need to be 'quoted' as string literals:
<a href="#nogo" onMouseOver="document.images['holder'].src='IL143.jpg'" onClick="document.images['holder'].src='IL143.gif'">IL143</a>

Back to Top of Page