(转载)vue scss中使用动态的JS变量(利用css3的va

2021-05-07  本文已影响0人  7b7d23d16ab5

原文链接:https://blog.csdn.net/zhengshaofeng1/article/details/107631371

body{
    --fontSize: 18px;
    --color: #000000;
}

div-name{
    font-size : var(--fontSize);
    color: var(--color);
}

【利用css3的var()实现运行时改变scss的变量值】

<template>
    <div>
        <span v-for="item in list" :style="{'--text': item.text, '--color': item.color}"></span>
    </div>
</template>

<script>
export default {
    name: '',
    components: {},
    props: {},
    data() {
        return {
            list: [
                { text: '"中"', color: 'red' },
                { text: '"华"', color: 'orange' },
                { text: '"人"', color: 'yellow' },
                { text: '"民"', color: 'orange' },
                { text: '"共"', color: 'green' },
                { text: '"和"', color: 'cyan' },
                { text: '"国"', color: 'blue' }
            ]
        };
    }
};
</script>

<style lang="scss" scoped>
span::after {
    content: var(--text);
    background-color: var(--color);
}
</style>
上一篇下一篇

猜你喜欢

热点阅读