uniapp小程序vant图片变形css处理

背景:在小程序中,object-fit 不支持该用法,但是uniapp 提供了mode="aspectFill" 这块,详细介绍如下:aspectFill和object-fit: cover一样,都是和background-size:cover效果差不多
传送门:https://uniapp.dcloud.io/component/image?id=image

在vant 使用

传送门:https://youzan.github.io/vant/#/zh-CN/image

总结
vant使用  fit="cover"
小程序使用  mode="aspectFill"

你可能感兴趣的:(uniapp)