{dede:field.body /}
css:图片高和宽最大都是600px。
.content img{
max-width:600px;
max-height:600px;
width:600px;
height:600px;
zoom:expression(function(el){
 el.style.zoom = "1";
  var resizeImg = function() {
   if (el.width > 600 || el.height>600) {
       if (el.width > el.height) {
          el.width = "600";
          elel.height = el.height / (el.width / 600);
        } else {
        el.height = "600";
        elel.width = el.width / (el.height / 600);
        }
      }
      }
        if (el.complete) {
            resizeImg();
        } else {
            el.onload = function() {
                resizeImg();
            }
        }
    }(this));
}

发表回复

后才能评论