js动态设置css主题(Style-setProperty)

hex颜色转RGB


javascript 复制代码
hex2rgb(str = '') {
        str = str.replace("#", "");
        const hxs: any = str.match(/../g);
        for (let index = 0; index < 3; index++) hxs[index] = parseInt(hxs[index], 16);
        return hxs;
    }

RGB转HXS


javascript 复制代码
rgb2hex(r: any, g: any, b: any) {
        const hexs = [r.toString(16), g.toString(16), b.toString(16)];
        for (let index = 0; index < 3; index++) {
            const isHave = hexs[index].length == 1;
            if (isHave) hexs[index] = "0" + hexs[index];
        }
        return "#" + hexs.join("");
    }

颜色加深


javascript 复制代码
getDark(color: any, level: any) {
        const rgb = this.hex2rgb(color);
        for (let index = 0; index < 3; index++) {
            rgb[index] = Math.floor(rgb[index] * (1 - level))
        }
        return this.rgb2hex(rgb[0], rgb[1], rgb[2]);
    }

颜色变淡


javascript 复制代码
getLight(color: any, level: any) {
        const rgb = this.hex2rgb(color);
        for (let index = 0; index < 3; index++) {
            rgb[index] = Math.floor((255 - rgb[index]) * level + rgb[index])
        }
        return this.rgb2hex(rgb[0], rgb[1], rgb[2]);
    }

定义后端返回主题色


定义的参考色,在开发的过程中希望后端人员能遵循

javascript 复制代码
const themeConf={
    primary: '#183ee4',
	success: '#0cce63',
	warn: '#ff4900',
	danger: '#f00c63'
}
javascript 复制代码
getTheme(temeConf) {
    const obj={};
    Object.keys(temeConf).forEach(key => {
	    let color = temeConf[key];
        // 用于按钮点击颜色
	    const dColor = this.getDark(color, 0.2);
	    obj[`--${key}`] = color;
	    obj[`--${key}--active`] = dColor;
	    for (let num = 1; num <= 4; num++) {
	        const val = this.getLightColor(color, num / 10);
	        obj[`--${key}-${num}`] = val;
	    }
    });
    return obj;
}

将组元录入

1、在index.html内添加style标签录入(可录入::root下不挂在到任何标签)

javascript 复制代码
setTheme(temeConf: any) {
        let eStr: string = '';
        Object.keys(temeConf).forEach(key => {
            let color = temeConf[key];
            // 用于按钮点击颜色
            const dColor = this.getDark(color, 0.2);
            eStr += `--${key}:${color};`;
            eStr += `--${key}--active:${dColor};`;
            for (let num = 1; num <= 4; num++) {
                const val = this.getLight(color, num / 10);
                eStr += `--${key}-${num}:${val};`;
            }
        });
        let styleDom = document.getElementById('#sysCssElemnet');
        if (!styleDom) {
            styleDom = document.createElement("style");
            styleDom.id = "#sysCssElemnet";
            document.head.append(styleDom);
        }
        styleDom.innerHTML = `:root{${eStr}}`;
    }

2、将组元录入到html

javascript 复制代码
let html=document.documentElement;
const themeObj=getTheme(themConf);
Object.keys(themeObj).forEach(key=>html.style.setProperty(key,colorObj[key]));

注:如果采用第二种方式录入,建议可直接在getTheme时直接在for循环中setProperty相关组元属性

相关推荐
张槊哲7 分钟前
函数的定义与使用(python)
开发语言·python
Senar12 分钟前
Web端选择本地文件的几种方式
前端·javascript·html
北辰浮光16 分钟前
[Mybatis-plus]
java·开发语言·mybatis
烛阴29 分钟前
UV Coordinates & Uniforms -- OpenGL UV坐标和Uniform变量
前端·webgl
姑苏洛言34 分钟前
扫码小程序实现仓库进销存管理中遇到的问题 setStorageSync 存储大小限制错误解决方案
前端·后端
烛阴44 分钟前
JavaScript 的 8 大“阴间陷阱”,你绝对踩过!99% 程序员崩溃瞬间
前端·javascript·面试
光而不耀@lgy1 小时前
C++初登门槛
linux·开发语言·网络·c++·后端
lkbhua莱克瓦241 小时前
用C语言实现——一个中缀表达式的计算器。支持用户输入和动画演示过程。
c语言·开发语言·数据结构·链表·学习方法·交友·计算器
Mr__Miss1 小时前
面试踩过的坑
java·开发语言
啊丢_1 小时前
C++——Lambda表达式
开发语言·c++