19 Dec 2009 | 2 Comments »
I would like to have the picture used in a table cells background do a slide show fade. Any help much appreciated. Thank you.
Category(s): InfoWasiat.Com
Tag(s): Html Background, Html Tag, Image, slide show, Table Background, table cells
Use JavaScript and CSS. There are a million and a half tutorials online. Google "JavaScript slide show". Good luck!
that first answer was a lot of help.
this is the css code you will need.
it will change the photo kinda grayish when the mouse moves over it.
<img src="photo.jpg" style="opacity:1; filter:alpha(opacity=100)" onmouseover="this.style.opacity=0.4; this.filters.alpha.opacity=40" onmouseout="this.style.opacity=1; this.filters.alpha.opacity=100"></img>
happy programing
Name (required)
Mail (will not be published) (required)
Website
Use JavaScript and CSS. There are a million and a half tutorials online. Google "JavaScript slide show". Good luck!
that first answer was a lot of help.
this is the css code you will need.
it will change the photo kinda grayish when the mouse moves over it.
<img src="photo.jpg" style="opacity:1;
filter:alpha(opacity=100)"
onmouseover="this.style.opacity=0.4;
this.filters.alpha.opacity=40"
onmouseout="this.style.opacity=1;
this.filters.alpha.opacity=100"></img>
happy programing