前端Vue日常工作中--动态css类

前端Vue日常工作中--动态css类

普通应用

Vue.js 允许你在动态地设置 CSS 类、样式等方面非常灵活。

假设你有一个 Vue 组件,其中有一个数据属性 isStyled,你想根据这个属性动态地改变元素的样式。

1.1动态 CSS 类

xml 复制代码
<template>
  <div :class="{ 'styled': isStyled }">
    <p>这是一个动态样式的例子</p>
  </div>
  <button @click="toggleStyle">切换样式</button>
</template>

<script>
export default {
  data() {
    return {
      isStyled: false,
    };
  },
  methods: {
    toggleStyle() {
      this.isStyled = !this.isStyled;
    },
  },
};
</script>

<style>
.styled {
  color: red;
  font-weight: bold;
}
</style>

isStyledtrue 时,.styled 类将被应用,从而改变文字的颜色和粗细。点击按钮会调用 toggleStyle 方法,切换 isStyled 的值,从而动态改变样式。

1.2动态内联样式

xml 复制代码
<template>
  <div :style="{ color: isStyled ? 'red' : 'black', fontWeight: isStyled ? 'bold' : 'normal' }">
    <p>这是另一个动态样式的例子</p>
  </div>
  <button @click="toggleStyle">切换样式</button>
</template>

<script>
export default {
  data() {
    return {
      isStyled: false,
    };
  },
  methods: {
    toggleStyle() {
      this.isStyled = !this.isStyled;
    },
  },
};
</script>

使用了三元运算符 isStyled ? 'red' : 'black'isStyled ? 'bold' : 'normal',根据 isStyled 的值动态地设置文字的颜色和粗细。点击按钮会调用 toggleStyle 方法,切换 isStyled 的值,从而动态改变样式。

组件中应用(父子组件)

在Vue.js中,你可以通过动态地绑定CSS类名或内联样式来实现动态CSS。这可以在父子组件之间进行通信,使得子组件可以根据父组件的状态或属性来更新自身的样式。

2.1动态绑定CSS类名

在父组件中:

html 复制代码
<template>
  <div :class="{ 'father-style': isStyled }">
    <child-component :isStyled="isStyled"></child-component>
  </div>
</template>

<script>
import ChildComponent from './ChildComponent.vue';

export default {
  components: {
    ChildComponent,
  },
  data() {
    return {
      isStyled: true, // 或者根据其他条件来动态改变
    };
  },
};
</script>
<style>
.father-style {
  color: red;
  font-weight: bold;
}
</style>

在子组件中:

html 复制代码
<template>
  <div :class="{ 'child-style': isStyled }">
    <!-- 子组件的内容 -->
  </div>
</template>

<script>
export default {
  props: {
    isStyled: Boolean,
  },
};
</script>

<style scoped>
.child-style {
  color: red;
  font-weight: bold;
}
</style>

父组件使用:class绑定动态的CSS类名,根据 isStyled 的值决定是否添加 father-style 类名。子组件同样使用:class绑定动态的CSS类名,根据 isStyled 的值决定是否添加 child-style 类名。

2.2动态绑定内联样式

在父组件中:

html 复制代码
<template>
  <div :style="{ backgroundColor: highlightColor }">
    <child-component :highlightColor="highlightColor"></child-component>
  </div>
</template>

<script>
import ChildComponent from './ChildComponent.vue';

export default {
  components: {
    ChildComponent,
  },
  data() {
    return {
      highlightColor: 'yellow', // 或者根据其他条件来动态改变
    };
  },
};
</script>

在子组件中:

html 复制代码
<template>
  <div :style="{ backgroundColor: highlightColor }">
    <!-- 子组件的内容 -->
  </div>
</template>

<script>
export default {
  props: {
    highlightColor: String,
  },
};
</script>

父组件使用:style绑定动态的内联样式,根据 highlightColor 的值来设置背景颜色。子组件同样使用:style绑定动态的内联样式,根据 highlightColor 的值来设置背景颜色。

相关推荐
人工智能训练师4 小时前
Ubuntu22.04如何安装新版本的Node.js和npm
linux·运维·前端·人工智能·ubuntu·npm·node.js
Seveny074 小时前
pnpm相对于npm,yarn的优势
前端·npm·node.js
yddddddy5 小时前
css的基本知识
前端·css
昔人'5 小时前
css `lh`单位
前端·css
Nan_Shu_6147 小时前
Web前端面试题(2)
前端
知识分享小能手7 小时前
React学习教程,从入门到精通,React 组件核心语法知识点详解(类组件体系)(19)
前端·javascript·vue.js·学习·react.js·react·anti-design-vue
蚂蚁RichLab前端团队8 小时前
🚀🚀🚀 RichLab - 花呗前端团队招贤纳士 - 【转岗/内推/社招】
前端·javascript·人工智能
孩子 你要相信光8 小时前
css之一个元素可以同时应用多个动画效果
前端·css
huangql5208 小时前
npm 发布流程——从创建组件到发布到 npm 仓库
前端·npm·node.js
Days20509 小时前
LeaferJS好用的 Canvas 引擎
前端·开源