📄 support.js
字号:
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;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -