掘金掘金前端 ”一键换肤“ 技术方案
小u前端 ”一键换肤“ 技术方案
一、技术核心
通过切换 css
选择器的方式实现主题样式的切换.
- 在组件中保留不变的样式,将需要变化的样式进行抽离
- 提供多种样式,给不同的主题定义一个对应的 CSS 选择器
- 根据不同主题通过切换CSS选择器设置不同的样式
二、实现方法
提取公共CSS样式, 通过变量的形式切换主题
1、建一个存放公共css变量的js文件,将需要定义的css变量存放到该js文件,通过css-vars-ponyfill 插件换肤
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| arduino复制代码
const baseSize = { "--font-size-first-level-title": "18px", "--font-size-second-level-title": "16px", };
export const lightTheme = { "--themeColor": "#01cc8c", "--left-bg": "rgb(182, 23, 23)", "--right-bg": "rgb(63, 9, 9)", "--top-bg": "rgb(6, 36, 65)", "--bottom-bg": "rgb(55, 214, 10)", ...baseSize, };
export const darkTheme = { "--themeColor": "#56518C", "--left-bg": "#0094ff", "--right-bg": "blue", "--top-bg": "red", "--bottom-bg": "pink", ...baseSize, };
|
2、页面中使用css变量
1 2 3 4 5 6 7 8
| xml复制代码<style lang="sass"> .left { background-color: var(--left-bg); color: var(--themeColor); height: 500px; flex: 1; } </style>
|
3、安装css-vars-ponyfill 插件
1 2
| css 复制代码npm i css-vars-ponyfill
|
4、封装切换主题的js
1 2 3 4 5 6 7 8 9 10 11
| javascript复制代码 import { lightTheme, darkTheme } from "../src/assets/js/variable"; import cssVars from "css-vars-ponyfill"; export const initTheme = (theme = true) => { document.documentElement.setAttribute("data-theme", theme ? "light" : "dark"); cssVars({ watch: true, variables: theme ? lightTheme : darkTheme, onlyLegacy: false, }); };
|
5、main.js中调用theme.js
1 2 3
| java复制代码import { initTheme } from './theme' let theme = 条件 ? false : true initTheme(theme)
|
6、图片路径怎么解决?
1 2 3 4 5 6 7 8 9 10 11
| javascript复制代码
Vue.prototype.SKIN_IMAGE_PATH = 条件 ? 'lightTheme' : 'darkTheme' javascript复制代码 export default { data () { return { tip: require(`@assets/img/theme/${this.SKIN_IMAGE_PATH}/tip.png`), } } }
|