龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > div+css/html >

css控制图片的等比缩放

时间:2012-12-31 10:44来源:未知 作者:admin 点击:
分享到:
css教程控制图片的等比缩放 css样式代码 style type=text/css img {max-width:500px; max-height:500px; scale:expression((this.offsetWidth this.offsetHeight)?(this.style.width = this.offsetWidth = 500 ? 500px : auto):(this.style.he

css教程控制图片的等比缩放
css样式代码
<style type="text/css">
img {max-width:500px; max-height:500px; scale:expression((this.offsetWidth > this.offsetHeight)?(this.style.width = this.offsetWidth >= 500 ? "500px" : "auto"):(this.style.height = this.offsetHeight >= 500 ? "500px" : "auto")); display:inline !important;}
</style>
示例中是默认网页所有的img的标签中的图片都会缩放,如果想让特定的图片缩放只要修改下前面的css名字,然后在网页中调用就可以了

比如你要让一张大图片1024*768在一个100*100的容器里显示,那这个时候你就需要用到等图片比缩放这个功能了!

<style type="text/css">
body{ margin:0; padding:0;}
img{
border:none;
max-width:100px;   /* FF IE7 */
max-height:100px; /* FF IE7 */
_width:expression(this.width > 100 && this.width > this.height ? 100: auto); /* IE6 */
_height:expression(this.height > 100 ? 100 : auto); /* IE6 */
}
</style>
<body><img src="meinv.jpg" alt="" width=“1024” height=“768” /></body>


图片等比列缩放的同时,你需要把图片底部对齐,这时候可以用绝对定位实现!

图片等比列缩放的同时,你需要把图片水平居中,这时只要在父容器里添加text-align:centre;即可!

图片等比缩放且图片底部对齐,这个时候还要水平居中的话,暂时能想到的是使用table!


精彩图集

赞助商链接