本文主要是介绍mpvue 微信小程序 Image 图片实现宽度100%,高度自适应,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
主要是设置mode="widthFix"
和width: 100%;
<!-- 新手教程 -->
<template><div class="center-tutorial"><img class="img" src="https://123.oss-cn-hangzhou.aliyuncs.com/666.jpeg" mode="widthFix"></div>
</template>
<style lang="less" scoped>.center-tutorial {.img {width: 100%;}}
</style>
这篇关于mpvue 微信小程序 Image 图片实现宽度100%,高度自适应的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!