mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-11 11:19:09 +00:00
1
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
function SuperImage(imgName,onsrc,offsrc)
|
||||
{
|
||||
this.HTMLimgName=imgName;
|
||||
this.onSrc=onsrc;
|
||||
this.offSrc=offsrc;
|
||||
this.selected=false;
|
||||
this.hover=false;
|
||||
// alert(this.HTMLimgName.toString());
|
||||
// alert(this.offSrc.toString());
|
||||
// alert(this.onSrc.toString());
|
||||
}
|
||||
|
||||
new SuperImage("crap","crapon.gif","crapoff.gif");
|
||||
|
||||
function SuperImage_over()
|
||||
{
|
||||
this.hover=true;
|
||||
// alert("blap");
|
||||
this.update();
|
||||
}
|
||||
SuperImage.prototype.over=SuperImage_over;
|
||||
|
||||
function SuperImage_on()
|
||||
{
|
||||
this.selected=true;
|
||||
this.update();
|
||||
}
|
||||
SuperImage.prototype.on=SuperImage_on;
|
||||
|
||||
function SuperImage_off()
|
||||
{
|
||||
this.selected=false;
|
||||
this.update();
|
||||
}
|
||||
SuperImage.prototype.off=SuperImage_off;
|
||||
|
||||
function SuperImage_out()
|
||||
{
|
||||
this.hover=false;
|
||||
this.update();
|
||||
}
|
||||
SuperImage.prototype.out=SuperImage_out;
|
||||
|
||||
function SuperImage_update()
|
||||
{
|
||||
if (document.images)
|
||||
{
|
||||
if (this.hover == true || this.selected == true)
|
||||
document[this.HTMLimgName].src = this.onSrc;
|
||||
else
|
||||
document[this.HTMLimgName].src = this.offSrc;
|
||||
}
|
||||
}
|
||||
SuperImage.prototype.update=SuperImage_update;
|
||||
|
||||
Reference in New Issue
Block a user