CSS 图片自动缩放

.Image {

  max-600px;height:auto;cursor:pointer;

  border:1px dashed #4E6973;padding: 3px;

  zoom:expression( function(elm) {

  if (elm.width>560) {

  var oldVW = elm.width; elm.width=560;

  elm.height = elm.height*(560 /oldVW);

  }

  elm.style.zoom = '1';

  }(this));}

原文地址:https://www.cnblogs.com/hxling/p/1307457.html