pagejs.js 229 B

1234567891011
  1. function zoomimg(o){
  2. var zoom=parseInt(o.style.zoom, 10)||100;zoom+=event.wheelDelta/12;if (zoom>0) o.style.zoom=zoom+'%';
  3. return false;
  4. }
  5. function autosimg(o){
  6. if(o.width>screen.width*0.5)
  7. {
  8. o.width=screen.width*0.5;
  9. }
  10. }