E cambiare sfondo ad una tabella?

  • Creatore Discussione Creatore Discussione jan267
  • Data di inizio Data di inizio

jan267

Utente Attivo
6 Mar 2003
1.950
2
38
36
Milano
twitter.com
Ciao a tutti,
in un post di WebDisaster c`era un link ad un sito che mostrava questo codice (che serve per il rollover):
Codice:
<script type="text/javascript">

/****************************************************
*	        DOM Image rollover:
*		by Chris Poole
*		[url]http://chrispoole.com[/url]
*               Script featured on [url]http://www.dynamicdrive.com[/url]
*		Keep this notice intact to use it :-)
****************************************************/

function init() {
	if (!document.getElementById) return
	var imgOriginSrc;
	var imgTemp = new Array();
	var imgarr = document.getElementsByTagName('img');
	for (var i = 0; i < imgarr.length; i++) {
		if (imgarr[i].getAttribute('hsrc')) {
			imgTemp[i] = new Image();
			imgTemp[i].src = imgarr[i].getAttribute('hsrc');
			imgarr[i].onmouseover = function() {
				imgOriginSrc = this.getAttribute('src');
				this.setAttribute('src',this.getAttribute('hsrc'))
			}
			imgarr[i].onmouseout = function() {
				this.setAttribute('src',imgOriginSrc)
			}
		}
	}
}
onload=init;

</script>
Mi chiedevo... sarebbe possibile (e se si, come) applicare questa cosa ad una tabella?
Mi spiego meglio... e` da tempo che gradirei avere uno script che faccia questo: al passaggio del mouse lo sfondo della tabella cambia!
Ero riuscito a fare una cosa simile con i CSS, ma non sono sicuro che sia il metodo migliore!

Potete darmi qualche dritta?
Grazie :)

Ciao :byebye:
 

Discussioni simili