vue项目如何套样式_VUE项目实现主题切换的多种方法

需求是 做一个深色主题和浅色主题切换的效果

方法一 多套css

这个方法也是最简单,也是最无聊的。

动态获取父级class名称,进行一个父级class的多次定义

{{ className == "box" ? "开灯" : "关灯" }}

export default {

name: "Centre",

data() {

return {

className: "box"

};

},

methods: {

// 改变class

chang() {

this.className === "box"

? (this.className = "boxs")

: (this.className = "box");

}

},

};

当class为box 使用witch的css

@import "./style/witch.scss";

当class为boxs 使用black的css

@import "./style/black.scss";

.switch {

position: fixed;

top: 4px;

right: 10px;

z-index: 50;

width: 60px;

height: 60px;

background: #fff;

line-height: 60px;

border-radius: 20%;

}

每个css文件样式大致相同,只是最外层的父级不一样,分别为.box 和.boxs

方法二 scss动态切换变量

我自己是分为了2个主要文件来做的

_variable.scss 变量管理文件

var()为css3中提出的声明样式变量的方法

var(属性名,属性值)注意属性值不能是字符串

// 主题切换

$bgColor:var(--backgroundColor,rgb(255,255,255));

$fontColor:var(--fonntColor,rgb(0,0,0));

$bgmColor:var(--backgroundMColor,rgb(238,238,238));

$tableColor:var(--tableColor,rgb(218,218,218));

$borderColor:var(--borderColor,rgb(238,238,238));

$tablesColor:var(--tablesColor,rgb(255,255,255));

$inputColor:var(--inputColor,rgb(255,255,255))

创建的_variable.scss 文件我在vue.config.js进行了一个全局的配置,没有在组件中引入

css: {

loaderOptions: {

// 此文件为主题切换文件

sass: {

prependData: `@import "./src/styles/_variable.scss";`,

},

},

},

2.publicStyle.js

这个方法可以去修改var定义的变量

document.getElementsByTagName("body")[0].style.setProperty("属性名", "替换的属性值f");

// 主题切换

const cut = (cutcheack) => {

document.getElementsByTagName("body")[0].style.setProperty("--backgroundColor", cutcheack ? "#121212" : "#fff");

document.getElementsByTagName("body")[0].style.setProperty("--fonntColor", cutcheack ? "#cecece" : "#333");

document.getElementsByTagName("body")[0].style.setProperty("--backgroundMColor", cutcheack ? "#333" : "#eee");

document.getElementsByTagName("body")[0].style.setProperty("--tableColor", cutcheack ? "#000" : "#d8d8d8");

document.getElementsByTagName("body")[0].style.setProperty("--tablesColor", cutcheack ? "#222" : "#fff");

document.getElementsByTagName("body")[0].style.setProperty("--inputColor", cutcheack ? "#666" : "#fff");

document.getElementsByTagName("body")[0].style.setProperty("--borderColor", cutcheack ? "#666" : "#fff");

};

export default cut;

组件中使用

import cut from "../../utils/publicStyle.js";

export default {

name: "Home",

data() {

return {

cutcheack: false, //主题切换

};

},

methods: {

// 左侧导航隐藏或显示

// 切换主题

switchs() {

cut(this.cutcheack);

},

},

};

.home {

height: 100%;

width: 100%;

background:$bgColor;

.el-container {

height: 100%;

color:$fontColor;

}

}

到此这篇关于VUE项目实现主题切换的文章就介绍到这了,更多相关VUE 实现主题切换内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值