| Home | Register | FAQ | Members List | Search | Today's Posts | Mark Forums Read |
|
|
#1 (permalink) |
|
world class cynic
|
Image Rollover
Hi. I need help with the code for a rollover. As I roll over an image I need a different image to appear in a similar manner to the "alt text". But I need it to work on firefox too. In quite a hurry, any help appreciated! Cheers Matt Byte.Visual Media - Out Now
The Booklist - Coming Soon |
|
|
|
|
|
#2 (permalink) |
|
senior member
Join Date: Sep 2005
Location: auckland, nz
Posts: 323
|
not sure if i understand the question, but if you want a tooltip set the title attribute as well. For an image rollover, use css rollovers: http://wellstyled.com/css-nopreload-rollovers.html |
|
|
|
#3 (permalink) |
|
world class cynic
|
HI, sorry should have made it clearer - yeah I want something like the tooltip but I need to be able to insert an image into it and text and a link. Any ideas? Matt Byte.Visual Media - Out Now
The Booklist - Coming Soon |
|
|
|
#4 (permalink) |
|
Rice Cooker
Join Date: Feb 2006
Location: Orange County, CA
Posts: 62
|
I'm not sure if I'm reading this right, but are you looking for a simple rollover effect? I don't know if you have Dreamweaver, but dreamweaver can pretty much take care of this for you with a very simple step by step. I've included some code below that should do it for you... <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> <script type="text/JavaScript"> <!-- function MM_swapImgRestore() { //v3.0 var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc; } function MM_preloadImages() { //v3.0 var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array(); var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++) if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}} } function MM_findObj(n, d) { //v4.01 var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) { d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);} if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n]; for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); if(!x && d.getElementById) x=d.getElementById(n); return x; } function MM_swapImage() { //v3.0 var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3) if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];} } //--> </script> </head> <body> <a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image1','','btn1_over.g if',0)"><img src="btn1.gif" alt="btn1" name="Image1" border="0" id="Image1" /></a> </body> </html> |
|
![]() |