lightbox大图片撑开问题解决方案

1.lightbox.css中添加:

#lightbox img{ width: auto; height: auto; max-height:400px; max-width:600px;}

 

2.lightbox.js中修改:

 

resizeImageContainer: function( imgWidth, imgHeight) {
  //把宽度和高度设成固定大小
  imgWidth = 600;
  imgHeight = 400;

 

  ... ....

 

 

你可能感兴趣的:(css)