Is it possible to have javascript image rollovers for my thumbnail pages? I want the thumbnails to be dimmed out until rolled over/clicked.
Kind of the opposite effect of this:
http://www.beetart.com/concept.phpUsing this method:
http://www.webdevelopersnotes.com/tips/html/42.php3
Comments
this person is using a div class with normal formatting. then is using javascript onmouseover/out calls to change the div class.. here is what they used
in the div
onmouseover="this.className='transON'" onmouseout="this.className='transOFF'
then is using this in the css document
div.transON {opacity:.70;filter: alpha(opacity=70); -moz-opacity: 0.7;}
http://www.cssplay.co.uk/opacity/picturemenu.html
I have implemented it here (in the image.php):
http://www.thinkdreams.com/zenphoto
Thinkdreams.