(转载)vue scss中使用动态的JS变量(利用css3的va
2021-05-07 本文已影响0人
7b7d23d16ab5
原文链接:https://blog.csdn.net/zhengshaofeng1/article/details/107631371
- 先了解一下 css3 的 var() 特性
- var()变量
- var变量的定义语法 : - -变量名 两个短横线加上变量名
- var变量的使用 : var(- -变量名)
- 我们可以在body中或者任何一个我们想要使用的变量语法的层级中定义var()变量并进行使用
- 例如在body中定义:
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>