概述
- 解释:css背景图片不能使用本地图片,官方给的理由是小程序不支持本地图片,只支持网络访问或者base64。
- 所以uniapp也不支持,但是只要不超过40kb即可。 注意:把下面导入的图片路径改成你自己的。
- 还有:如果图片大小超过40kb是不会自动转换的,需要程序员自己吧图片转换成base64格式
<template>
<view :style="{backgroundImage:`url(${indexBackgroundImage})`,backgroundSize: 'cover'}" >
</view>
</template>
<script>
import indexBackgroundImage from "@/static/images/myInfo/di.png"
export default {
data() {
return {
indexBackgroundImage:indexBackgroundImage
};
},
}
</script>
最后
以上就是俊秀大白为你收集整理的uni-app background 使用本地图片的全部内容,希望文章能够帮你解决uni-app background 使用本地图片所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复