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.php
Using this method:
http://www.webdevelopersnotes.com/tips/html/42.php3
this person is using css for the opacity and is using javascript
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;}
You can also do this in pure CSS, an example of it is found here:
http://www.cssplay.co.uk/opacity/picturemenu.html
I have implemented it here (in the image.php):
http://www.thinkdreams.com/zenphoto
Thinkdreams.
Well, I wasn't too sure that was acceptable to package a theme, considering most of it has been put together from various sources here, and other internet research. What is the proper way to do this, and ensure that the people who did the original code get credit?
The licenses on most all of the themes (even the stopdesign theme from Doug Bowman) are very open. Make sure you look at what their requirements are for derivative works and credits, and just make a CREDITS file, or a link to a new page, credits.php. (to do that in 1.0.3, just make a new credits.php file in the theme directory that looks like the rest of your theme but without the image code, and use "?p=credits" to link to it from the other theme files. I prefer this method to manually listing out all the contributors on every page, which is pretty distracting from the theme itself.