常用使用img标签,制定width或者height的任意一个,图片会自动等比例缩小
<div>
<img src="http://avatar.csdn.net/8/5/D/1_u012941315.jpg"/>
</div>
<!-- CSS-->
<style>
img {
width: 100px;//重置大小,最终图片大小确定
}
</style>
但是不知道为什么我在uniapp小程序中这样写并没有等比缩小
使用CSS3新属性,transform的scale
大于1: 放大
小于1: 缩小
<style>
img{
transform:scale(2);//设置缩放比例
-ms-transform:scale(2);
-webkit-transform:scale(2);
-o-transform:scale(2);
-moz-transform:scale(2);
}
</style>