四款css 圖片按比例縮放執行個體(相容ie6,7,firefox)

來源:互聯網
上載者:User

使用max-width,max-height;或者min-width,min-height的css屬性即可。如:

 代碼如下 複製代碼
img{max-width:100px;max-height:100px;}
img{min-width:100px;min-height:100px;}


對於ie6及其以下版本的瀏覽器,則可以利用其支援的expression屬性,在css code中嵌入網頁特效 code
來實現圖片的縮放

.thumbimage {max-width: 100px;max-height: 100px;} /* for firefox & ie7 */
* html .thumbimage { /* for ie6 */
width: expression(this.width > 100 && this.width > this.height ? 100 : auto);
height: expression(this.height > 100 ? 100 : auto);
}


方法二

css圖片等比例縮放
css圖片等比例縮放.

 代碼如下 複製代碼
thumbimaged{max-width: 650px;max-height: 650px;}/* for firefox & ie7 */* html .thumbimaged{/* for ie6 */width: expression(this.width > 650 && this.width > this.height

方法三

<style type="text/css">

 代碼如下 複製代碼
.thumbimage{
  max-width:300px;
  max-height:200px;
  }
  *html.thumbimage{
  width:expression_r(this.width>300&&this.width>this.height?300:auto);
  height:expresion(this.height>200?200:auto);
  }

</style>

在圖片調用中調用該css樣式
------------------------------------------
<img src="圖片檔案地址" class="thumbimage" />


方法執行個體四

 代碼如下 複製代碼
#image1{
width: expression(this.width > 980 && this.width > this.height ? 730 : true);
    height: expresion(this.height > 980 ? 730 : true);
}


如果圖片寬超過980,去980,不足980,取原寬

 

 

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.