You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
229 B
11 lines
229 B
function zoomimg(o){
|
|
var zoom=parseInt(o.style.zoom, 10)||100;zoom+=event.wheelDelta/12;if (zoom>0) o.style.zoom=zoom+'%';
|
|
return false;
|
|
}
|
|
|
|
function autosimg(o){
|
|
if(o.width>screen.width*0.5)
|
|
{
|
|
o.width=screen.width*0.5;
|
|
}
|
|
}
|