Vue3项目中实现主题切换真的很简单!!!

开发 前端
换肤能够实现的终极密码是——CSS变量,可以为每个主题设定一组CSS变量,包含这个主题的所有颜色、字体等信息,当需要切换主题时,只需要更改使用的CSS变量组即可。

一、原理

换肤能够实现的终极密码是——CSS变量,可以为每个主题设定一组CSS变量,包含这个主题的所有颜色、字体等信息,当需要切换主题时,只需要更改使用的CSS变量组即可。

  1. 声明变量。在 :root 伪类中声明 CSS 变量,这样就能在全局范围内使用变量:
:root {
  --main-color: #06c;
}
  1. 使用变量。在你的 CSS 中,使用 var() 函数来使用 CSS 变量:
.header {
  background-color: var(--main-color);
}

二、demo实现

下面我们用Vue3+Element-plus为例,来实现一波高亮模式+暗黑模式两个主题色,可参考element-plus暗黑模式介绍。

2.1 引入主题色样式

在src/styles下面新建theme.scss,把默认暗黑主题色引入进来,并可以在其里面覆盖原有变量或新增一些变量

// theme.scss
/** element内置暗黑主题 */
@use 'element-plus/theme-chalk/src/dark/css-vars.scss' as *;

// 可以进行一些样式的覆盖
html {
    --v-bg-color: #cfcccc; // 新增
}

html.dark {
    --v-bg-color: #141414; // 新增
  	--el-color-primary: #409eff; // 覆盖
}

在main.ts中引入默认主题色和暗黑模式主题色

// main.ts 文件
import { createApp } from 'vue';
import ElementPlus from 'element-plus';
// element默认主题
import 'element-plus/dist/index.css'
import './style.css';
// 公共样式,包含自定义暗黑模式,element重置样式
import './styles/index.scss';
import App from './App.vue';

const app = createApp(App);
app.use(ElementPlus);
app.mount('#app')

此时在浏览器控制台就可以看到很多变量

图片

2.2 主题色切换能力

主题切换能力其核心关注点为:

  1. 利用provide注入当前主题及修改主题的方法,然后在组件中通过inject获取主题及主题修改方法;
  2. 利用localStorage持久化存储主题;
  3. 改变html的class属性,进而决定使用哪一套主题;
<script setup lang="ts">
import {provide, ref, onMounted} from 'vue';
import SwitchDark from './components/SwitchDark.vue';

// 改变属性,确定使用哪一套样式
const addThemeAttribute = (theme: string) => {
  const html = document.documentElement;
  html.setAttribute('class', theme);
}

const theme = ref(localStorage.getItem('myTheme') || 'light');

onMounted(() => {
  addThemeAttribute(theme.value);
});

const setTheme = (newTheme: string) => {
  // 改变主题
  theme.value = newTheme;

  addThemeAttribute(newTheme);

  localStorage.setItem('myTheme', newTheme);
};

provide('theme', {
  theme,
  setTheme
});

</script>

<template>
  <SwitchDark />
  <div class="bg">
    我是内容
  </div>
</template>

<style scoped>
.bg {
  background-color: var(--v-bg-color);
  width: 200px;
  height: 200px;
}
</style>

2.3 切换按钮

切换主题色肯定需要一个按钮,下面利用el-switch实现了一个简单的切换按钮,并利用setTheme来切换对应的主题。

图片

<template>
    <el-switch
        v-model="isDark"
        inline-prompt	
        @change="changeTheme"
        :active-icnotallow="Sunny"
        :inactive-icnotallow="Moon"
        size="large"
    />
</template>

<script setup lang="ts">
import {inject, Ref, computed} from 'vue';
import {Sunny, Moon} from '@element-plus/icons-vue';

const {theme, setTheme} = inject<{theme: Ref<string>, setTheme: (newTheme: string) => void}>('theme') || {};
const isDark = computed(() => theme?.value === 'dark');

const changeTheme = () => {
    console.log(theme?.value)
    if (theme?.value === 'light') {
        setTheme?.('dark');
    } else {
        setTheme?.('light');
    }
};
</script>

<style scoped>
</style>


责任编辑:武晓燕 来源: 前端点线面
相关推荐

2021-08-31 10:52:30

容量背包物品

2022-02-14 21:31:00

用户身份验证

2022-03-04 17:21:29

Redux项目前端

2017-03-16 16:57:56

2022-03-07 11:15:25

Pinia状态库vue3

2022-03-10 11:04:04

Vue3Canvas前端

2009-07-27 13:46:27

网络参数切换

2021-12-01 08:11:44

Vue3 插件Vue应用

2021-12-02 05:50:35

Vue3 插件Vue应用

2024-01-22 13:15:00

2021-03-31 08:01:50

Vue3 Vue2 Vue3 Telepo

2022-08-15 07:34:36

vite项目Vue3

2021-05-12 08:57:56

项目搭建工具

2021-11-30 08:19:43

Vue3 插件Vue应用

2023-11-28 09:03:59

Vue.jsJavaScript

2020-09-19 21:15:26

Composition

2024-02-01 09:10:04

页面引导工具Vue3

2021-02-11 13:56:21

JSweb插件

2010-05-19 16:45:26

MySQL自动启动

2024-10-18 10:49:03

Actions异步函数
点赞
收藏

51CTO技术栈公众号