DEDE防止大图片撑破页面,控制图片自适应
dedecms吧
全部回复
仅看楼主
level 3
cnyito 楼主
以下css代码插入templets/style/page.css里面,放到最下边就可以,680可以改成你要控制的最大宽度。
这样当文章中图片宽度超过680后,自动按比例缩小成680,而对于那些宽度没有超过680的,保持原来的尺寸不变。
高度设置的最高是1650,也都可以自己改的
.viewbox img{
     border:0;  
     margin:0;  
     padding:0;
     max-width:650px;
     width: expression(this.width > 650 && this.width > this.height ? 650px : 'auto';);  
     max-height:1650px;
     height: expresion(this.height > 1650 ? 1650px : 'auto';);
}

2011年02月06日 04点02分 1
level 1
没有效果
2012年09月20日 07点09分 2
level 12
吊炸了!哈哈
2015年08月26日 02点08分 4
level 12
吊炸了!哈哈
2015年08月26日 10点08分 5
level 12
新人求罩
2015年08月26日 11点08分 6
1