You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
937 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!--pages/test/image.wxml-->
<text>pages/test/image.wxml</text>
<view class="demobox">
<view class="title">1.缩放模式:scaleToFill不保持纵横比例缩放图片使图片完全适应</view>
<image src='../../images/R-C.jpg' mode="scaleToFill"></image>
<view class="title">2.缩放模式:aspectFit保持纵横比例缩放图片使长边能完全显示</view>
<image src='../../images/R-C.jpg' mode="aspectFit"></image>
<view class="title">3.缩放模式:aspectFill保持纵横比例缩放图片只保证短边完全显示</view>
<image src='../../images/R-C.jpg' mode="aspectFill"></image>
<view class="title">4.缩放模式:widthFix宽度不变高度变化保持纵横比例</view>
<image src='../../images/R-C.jpg' mode="widthFix"></image>
<view class="title">5.裁剪模式:top不缩放图片只显示图片的顶部区域</view>
<image src='../../images/R-C.jpg' mode="top"></image>
</view>