Click here to Skip to main content
6,595,854 members and growing! (20,824 online)
Email Password   helpLost your password?
Web Development » Client side scripting » General     Intermediate

OO DOM Image Rollover

By VectorX

This script makes it easy to add rollover/ mousedown effects to any image on the page, including image submit buttons. It automatically preloads images as well. Script works in all DOM capable browsers- IE5+, NS6+, Opera7+.
Javascript, Windows, Visual Studio, Dev
Posted:6 Jun 2005
Views:31,574
Bookmarked:5 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
7 votes for this article.
Popularity: 3.46 Rating: 4.10 out of 5
1 vote, 14.3%
1

2

3
2 votes, 28.6%
4
4 votes, 57.1%
5

Sample Image - sample3.gif

Introduction

This is an updated script from my personal library. The script can easily add rollovers and mousedown effects to any image through properties of the image. It can also automatically preload images on page load. This script also allows you to specify OnMouseDown and OnMouseOut properties without comprising the effect of srcover and srcdown.

MouseOver Effect

To create a mouse over image is as simple as adding srcover="mouseoverimage.jpg" to your image HTML code. For example:

<img src="images/button1.gif" width="148" height="24" 
          srcover="images/button1_over.gif">

Example 1

MouseDown Effect

To create a mouse down effect is also very simple, just by adding srcdown="mousedownimage.jpg" to your HTML. For example:

<img src="images/button1.gif" width="148" 
       height="24" srcdown="images/button1_down.gif">

Example 2

Combined MouseOver and MouseDown Effect

The script can also handle mouse over effects and mouse down effects together. By specifying srcover="mouseoverimage.jpg" srcdown="mousedownimage.jpg" together, your images can now handle both effects. For example:

<img src="images/button1.gif" width="148" height="24" 
  srcover="images/button1_over.gif" srcdown="images/button1_down.gif">

Example 3

Image Submit Buttons

Besides regular images, this script can also do the same effects to image submit buttons. It's as easy as this:

<input type="image" name="submitimg" src="images/submitbutton.gif" 
  srcover="images/submitbutton_over.gif" 
  srcdown="images/submitbutton_down.gif" border="0">

Extra Functions

This script will preload all of your src, srcover and srcdown images for faster loading. The script will not preload all images and waste precious client side memory. It will only preload the image HTML that includes a srcover or srcdown property.

The script will also forward and run all OnMouseOver, OnMouseOut and OnMouseUp property events without disturbing the private ones.

Full Source Code

function imageholderclass(){
  this.over=new Array();
  this.down=new Array();
  this.src=new Array();
  this.store=store;
  
  function store(src, down, over){
    var AL=this.src.length;
    this.src[AL]=new Image(); this.src[AL].src=src;
    this.over[AL]=new Image(); this.over[AL].src=over;
    this.down[AL]=new Image(); this.down[AL].src=down;
  }
}

var ih = new imageholderclass();
var mouseisdown=0;

function preloader(t){
  for(i=0;i<t.length;i++){
    if(t[i].getAttribute('srcover')||t[i].getAttribute('srcdown')){
      
      storeimages(t[i]);
      var checker='';
      checker=(t[i].getAttribute('srcover'))?checker+'A':checker+'';
      checker=(t[i].getAttribute('srcdown'))?checker+'B':checker+'';
      
      switch(checker){
      case 'A' : mouseover(t[i]);mouseout(t[i]); break;
      case 'B' : mousedown(t[i]); mouseup2(t[i]); break;
      case 'AB' : mouseover(t[i]);mouseout(t[i]); 
                  mousedown(t[i]); mouseup(t[i]); break;
      default : return;      
      }
      
      if(t[i].src){t[i].setAttribute("oldsrc",t[i].src);}
    }
  }
}

function mouseup(t){
  var newmouseup;
  if(t.onmouseup){
    t.oldmouseup=t.onmouseup;
    newmouseup= 
      function(){mouseisdown=0;
                 this.src=this.getAttribute("srcover");
                 this.oldmouseup();}

  }
  else{
    newmouseup = 
      function(){mouseisdown=0;
                 this.src=this.getAttribute("srcover");}
  }
  t.onmouseup=newmouseup;
}

function mouseup2(t){
  var newmouseup;
  if(t.onmouseup){
    t.oldmouseup=t.onmouseup;
    newmouseup=function(){mouseisdown=0;
               this.src=this.getAttribute("oldsrc");
               this.oldmouseup();}
    }
  else{newmouseup=function(){mouseisdown=0;
                  this.src=this.getAttribute("oldsrc");}}
  t.onmouseup = newmouseup;
}

function mousedown(t){
  var newmousedown;
  if(t.onmousedown){
    t.oldmousedown=t.onmousedown;
    newmousedown=
      function(){if(mouseisdown==0)
                 {this.src=this.getAttribute("srcdown");
                  this.oldmousedown();}}
  }
  else{newmousedown=
       function(){if(mouseisdown==0){
                      this.src=this.getAttribute("srcdown");}}}
  t.onmousedown=newmousedown;
}

function mouseover(t){
  var newmouseover;
  if(t.onmouseover){
    t.oldmouseover=t.onmouseover;
    newmouseover= function(){this.src=this.getAttribute("srcover");
                             this.oldmouseover();}
  }
  else{newmouseover=function(){this.src=this.getAttribute("srcover");}}
  t.onmouseover=newmouseover;
}

function mouseout(t){
  var newmouseout;
  if(t.onmouseout){
    t.oldmouseout=t.onmouseout;
    newmouseout = 
   function(){this.src=this.getAttribute("oldsrc");this.oldmouseout();}
  }
  else{newmouseout=function(){this.src=this.getAttribute("oldsrc");}}
  t.onmouseout=newmouseout;
}

function storeimages(t){
  var s=(t.getAttribute('src'))?t.getAttribute('src'):'';
  var d=(t.getAttribute('srcdown'))?t.getAttribute('srcdown'):'';
  var o=(t.getAttribute('srcover'))?t.getAttribute('srcover'):'';
  ih.store(s,d,o);
}

function preloadimgsrc(){
  if(!document.getElementById) return;
  var it=document.getElementsByTagName('IMG');
  var it2=document.getElementsByTagName('INPUT');
  preloader(it);
  preloader(it2);
}

if(window.addEventListener)
  {window.addEventListener("load", preloadimgsrc, false);} 
else{
  if(window.attachEvent){window.attachEvent("onload", preloadimgsrc);}
  else{if(document.getElementById){window.onload=preloadimgsrc;}}
}

Conclusion

Well I hope you like my code, let me know if you find any bugs :P

Latez

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

VectorX


Member
Please visit my website http://www.codevendor.com for all my latest updates and tutorials.
Occupation: Founder
Company: CodeVendor
Location: United States United States

Other popular Client side scripting articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 6 of 6 (Total in Forum: 6) (Refresh)FirstPrevNext
GeneralWe know that the challenge is more important PinmemberGlauco.Basilio10:34 5 Nov '06  
GeneralFor rollovers I usually go for the simpler: Pinmemberfrumbert20:26 14 Jun '05  
Generalwrong use of HTML semantics PinmemberRui Dias Lopes23:19 6 Jun '05  
GeneralRe: wrong use of HTML semantics PinmemberVectorX10:00 7 Jun '05  
GeneralRe: wrong use of HTML semantics PinmemberRui Dias Lopes0:10 8 Jun '05  
GeneralRe: wrong use of HTML semantics PinsussAnonymous16:53 17 Jun '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 6 Jun 2005
Editor: Smitha Vijayan
Copyright 2005 by VectorX
Everything else Copyright © CodeProject, 1999-2009
Web13 | Advertise on the Code Project