vue 动态绑定背景图片

Posted dudu123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 动态绑定背景图片相关的知识,希望对你有一定的参考价值。

html

<div class="racetm" :style="{backgroundImage: ‘url(‘ + (coverImgUrl ? coverImgUrl : baseImg) + ‘)‘, backgroundSize:‘100% 100%‘, backgroundRepeat: ‘no-repeat‘}">

</div>

 

画重点

backgroundSize:‘100% 100%‘  背景图片大小 必须这么写 x轴 y轴 才能100覆盖
backgroundRepeat: ‘no-repeat‘ 背景图片不重复

script  动态赋值

<script>
    export default {
        name: "racehome",
        data(){
            return{
                baseImg: require(../../assets/images/other/campain_bg.jpg),
                coverImgUrl: ‘‘,
            }
        },
        methods:{
            _getracerule(){
                getracerule({id: this.id},{token:Cookies.get(token),platform: web}).then((data)=>{
                    this.rule=data.rule;
                    this.coverImgUrl = data.bg_url;
                })
            },
    }
</script>

 

css

    .racetm
            width: 100%
            height:100%;
            background:#fff

 




以上是关于vue 动态绑定背景图片的主要内容,如果未能解决你的问题,请参考以下文章

Vue中的坑vue项目中动态绑定src不显示图片解决方法

vue中img的src动态赋值(本地图片的路径)

vue中img的src动态赋值(本地图片的路径)

从 node_modules 绑定动态 Vue 图片 src

vue动态绑定background:url绑不上的问题

vue中img的src绑定