当前位置:   article > 正文

总结前端换肤的 N 种方案_css-vars-ponyfill

css-vars-ponyfill

前端换肤的N种方案

最近在做网站换肤的需求,也就是主题切换。那么如何切换主题的颜色呢?以下是网站换肤的实现以及基于换肤拓展的一些方案分享给大家,希望大家在做类似需求的时候能够有些参考。

原文demo链接地址

覆盖样式实现

  1. // light
  2. $color-brand1: #ffcd32;
  3. $fill-1: #fff !default;
  4. $color-text: #3c3c3c;
  5. $color-text-1: #757575;
  6. $color-text-2: #222;
  7. // dark
  8. $dark-fill-1: #222 !default// 品牌色
  9. $dark-color-text: #fff;
  10. $dark-color-text-1: rgba(2552552550.3);
  11. $dark-color-text-2: $color-brand1;
  12. 复制代码
  1. // 页面使用
  2. <style lang="scss">
  3. @import "./assets/scss/index.scss";
  4. [data-theme="dark"] {
  5.   body {
  6.     background: $dark-fill-1;
  7.   }
  8.   .reaconmend .reaconmend-list .item .name {
  9.     color: $dark-color-text;
  10.   }
  11.   .reaconmend .reaconmend-list .item .desc {
  12.     color: $dark-color-text-1;
  13.   }
  14.   .header .text {
  15.     color: $dark-color-text-2;
  16.   }
  17. }
  18. </style>
  19. 复制代码



利用css优先级的原理覆盖掉原有样式的实现,每定义一套皮肤就要定义对应的sass变量,以及定义一套覆盖原有样式的皮肤样式。如果有多套皮肤的话,覆盖的代码量就会n套。

「缺点」

样式不易管理,查找样式复杂,开发效率低,拓展性差,维护成本高,多人协作沟通麻烦。

sass变量实现


  1. // variable.scss  
  2. // 浅色
  3. $colors-light: (
  4.   fill-1: #fff,
  5.   text: #3c3c3c,
  6.   text-1: #757575,
  7.   text-2: #222,
  8. );
  9. // 深色
  10. $colors-dark: (
  11.   fill-1: #222,
  12.   text: #fff,
  13.   text-1: rgba(2552552550.3),
  14.   text-2: #ffcd32,
  15. );
  16. 复制代码
  1. // mixin.scss
  2. // 背景色
  3. @mixin bg-color($key) {
  4.   background-colormap-get($colors-light, $key);
  5.   [data-theme="dark"] & {
  6.     background-colormap-get($colors-dark, $key);
  7.   }
  8. }
  9. // text色
  10. @mixin text-color($key) {
  11.   colormap-get($colors-light, $key);
  12.   [data-theme="dark"] & {
  13.     colormap-get($colors-dark, $key);
  14.   }
  15. }
  16. 复制代码
  1. // 页面使用
  2. <style lang="scss" rel="stylesheet/scss">
  3. @import "../../../assets/scss/variable.scss";
  4. @import "../../../assets/scss/mixin.scss";
  5. .reaconmend-list {
  6.     .list-title {
  7.       height40px;
  8.       line-height40 px;
  9.       text-align: center;
  10.         @include text-color(text-1);
  11.     }
  12. }
  13. </style>
  14. 复制代码


如上所示用到的知识点包含Sass变量(variable),嵌套(nestend rules),混合(mixins),
Sass Maps的函数map-get($map,$key)。

Maps的含义: Maps可视为键值对的集合,键被用于定位值 在css种没有对应的概念。 和Lists不同Maps必须被圆括号包围,键值对被都好分割 。 Maps中的keys和values可以是sassscript的任何对象。(包括任意的sassscript表达式 arbitrary SassScript expressions) 和Lists一样Maps主要为sassscript函数服务,如 map-get函数用于查找键值,map-merge函数用于map和新加的键值融合,@each命令可添加样式到一个map中的每个键值对。 Maps可用于任何Lists可用的地方,在List函数中 Map会被自动转换为List , 如 (key1: value1, key2: value2)会被List函数转换为 key1 value1, key2 value2 ,反之则不能。(网友Soledad提供)

「使用scss变量换肤相比覆盖样式」

  • 拓展性更强
  • 将换肤的逻辑进行了收敛

生成多套皮肤css


使用覆盖样式实现与scss变量实现会把多套皮肤的样式都编译到一个css文件里面,如果有多套皮肤样式,这个文件是会非常大的。为了解决这样的问题,就自然的想出了拆分scss的实现:

实现方案,通过编译工具与构建工具编译出多套皮肤css,通过js动态的link对应的皮肤样式

  1. // js动态处理
  2.  var theme = /\bt=(\w+)/.exec(location.search);
  3.  theme = theme ? theme[1] : "light";
  4.  changeTheme(theme);
  5. function changeTheme(theme) {
  6.     var head = document.getElementsByTagName("head")[0];
  7.     var link = document.createElement("link");
  8.     link.dataset.type = "theme";
  9.     link.href = "assets/css/theme-" + theme + "/pages/home/home.css";
  10.     link.rel = "stylesheet";
  11.     link.type = "text/css";
  12.     head.appendChild(link);
  13. }
  14. 复制代码

CSS变量实现


  1. // variable.scss
  2. // 默认变量
  3. :root {
  4.   --fill-1#fff;
  5.   --text#3c3c3c;
  6.   --text-1#757575;
  7.   --text-2#222;
  8.   --font-size-large18px;
  9.   --font-size-large-x22px;
  10.   --font-size-medium14px;
  11.   --font-size-medium-x16px;
  12.   --font-size-small-s10px;
  13.   --font-size-small12px;
  14. }
  15. // 深色变量
  16. [data-theme="dark"] {
  17.   --fill-1#222;
  18.   --text#fff;
  19.   --text-1rgba(2552552550.3);
  20.   --text-2#ffcd32;
  21. }
  22. 复制代码

在页面对css变量做引入使用

  1. // 页面使用
  2. @import "../../assets/scss/variable.scss";
  3. .header {
  4.   position: relative;
  5.   height70px;
  6.   text-align: center;
  7.   font-size0
  8.   .text {
  9.     display: inline-block;
  10.     vertical-align: top;
  11.     line-height70px;
  12.     font-sizevar(--font-size-large);
  13.     colorvar(--text-2);
  14.   }
  15. }
  16. 复制代码


具体的实现效果:
 

问题:css变量会存在兼容性问题

css变量兼容性如下:


虽然现在大部分主流浏览器都可以兼容,但是还要考虑更多的兼容性这块的请往下看:

CSS变量兼容性实现-1

在css变量的基础上新增了postcss-custom-properties这个插件 安装依赖: npm install postcss-custom-properties --save-dev npm install postcss-loader --save-dev

在根目录新建postcss.config.js增加配置,配置如下:

  1. const postcssCustompProperties require("postcss-custom-properties");
  2. module.exports = {
  3.   plugins: [
  4.     postcssCustompProperties({
  5.       importFrom"src/assets/scss/variable.scss"
  6.     })
  7.   ]
  8. };
  9. 复制代码

postcss 会将css自定义变量直接编译为确定值,而不是保留。这时就需要 postcss 插件 来为我们保留这些自定义变量,使用 postcss-custom-properties效果如下:
 

  • 优点:会生成一套与css变量对应的css
  • 缺点:在构建时根据css变量生成对应的css,换肤是运行时并不能生成对应的css。

换肤后样式:
 

CSS变量兼容性实现-2


首先需要建一个存放公共css变量的js文件,将需要定义的css变量存放到该js文件,例如(variable.js)

  1. // variable.js
  2. // 字体变量
  3. const baseSize = {
  4.   "--font-size-large-x""22px",
  5.   "--font-size-large""18px",
  6.   "--font-size-medium""14px",
  7.   "--font-size-medium-x""16px",
  8.   "--font-size-small-s""10px",
  9.   "--font-size-small""12px",
  10. };
  11. //浅色
  12. export const lightTheme = {
  13.   "--fill-1""#fff",
  14.   "--text""#3c3c3c",
  15.   "--text-1""#757575",
  16.   "--text-2""#222",
  17.   ...baseSize,
  18. };
  19. // 深色
  20. export const darkTheme = {
  21.   "--fill-1""#222",
  22.   "--text""#fff",
  23.   "--text-1""rgba(255, 255, 255, 0.3)",
  24.   "--text-2""#ffcd32",
  25.   ...baseSize,
  26. };
  27. 复制代码


页面使用css变量,例如:

  1. <style lang="scss">
  2.  .text {
  3.     display: inline-block;
  4.     vertical-align: top;
  5.     line-height70px;
  6.     font-sizevar(--font-size-large);
  7.     colorvar(--text-2);
  8.   }
  9. </style>
  10. 复制代码


安装css-vars-ponyfill 插件

「css-vars-ponyfill」 官方概念:在传统浏览器和现代浏览器中为CSS自定义属性(又名“CSS变量”)提供客户端支持的ponyfill。 (具体用法与概念请查阅官方网站:「css-vars-ponyfill」


封装切换主题的js,在main.js做初始化调用

  1. // theme.js
  2. import { lightTheme, darkTheme } from "../src/assets/js/variable";
  3. import cssVars from "css-vars-ponyfill";
  4. export const initTheme = (theme) => {
  5.   document.documentElement.setAttribute("data-theme", theme ? "light" : "dark");
  6.   cssVars({
  7.     watch: true// 当添加,删除或修改其<link><style>元素的禁用或href属性时,ponyfill将自行调用
  8.     variables: theme ? lightTheme : darkTheme, // variables 自定义属性名/值对的集合
  9.     onlyLegacy: false// false  默认将css变量编译为浏览器识别的css样式  true 当浏览器不支持css变量的时候将css变量编译为识别的css
  10.   });
  11. };
  12. 复制代码


在切换主题的按钮组件中调用


总结:css自定义属性 + css-vars-ponyfill(解决兼容性)
预览效果

细心的小伙伴们,一定发现了这里的css变量已经编译成浏览器可识别的css样式了。

ElementUI实现


官方的实现解释

已实现的链接参考:juejin.cn/post/684490…

less在线编译实现


根据「less」可以直接 编译「less变量」实现的步骤如下:

  1. // variable.less 定义less变量
  2. // 公共字体
  3. @font-size-large-x: 22px;
  4. @font-size-large: 18px;
  5. @font-size-medium: 14px;
  6. @font-size-medium-x: 16px;
  7. @font-size-small-s: 10px;
  8. @font-size-small: 12px;
  9. // 浅色
  10. @fill-1: #fff;
  11. @text: #3c3c3c;
  12. @text-1: #757575;
  13. @text-2: #222;
  14. // 页面使用 例如:
  15. // 下面.text的css 如下,这里的 @font-size-large 和  @text-2就是 less 变量:
  16. .text {
  17.     display: inline-block;
  18.     vertical-align: top;
  19.     line-height70px;
  20.     font-size@font-size-large;
  21.     color@text-2;
  22.   }
  23. 复制代码

当点击换肤按钮的时候,直接去加载 less.js,具体代码如下

  1. <template>
  2. <div class="header">
  3. <div class="text">小恐龙换肤</div>
  4. <div role="switch" class="switch" :class="theme === true ? 'is-checked' : ''">
  5. <input type="checkbox" class="switch-input" />
  6. <span class="switch-core" @click="changeTheme"></span>
  7. </div>
  8. </div>
  9. </template>
  10. <script>
  11. import { lightTheme, darkTheme } from "../../assets/js/variable";
  12. export default {
  13. name: "m-header",
  14. data() {
  15. return {
  16. theme: true
  17. };
  18. },
  19. methods: {
  20. changeTheme() {
  21. this.theme = !this.theme;
  22. // 调用 less.modifyVars 方法来改变变量值
  23. window.less.modifyVars(this.theme ? lightTheme : darkTheme);
  24. }
  25. },
  26. mounted() {}
  27. };
  28. </script>
  29. 复制代码

<script> import { lightTheme, darkTheme } from "../../assets/js/variable"; export default { name: "m-header", data() { return { theme: true }; }, methods: { changeTheme() { this.theme = !this.theme; // 调用 less.modifyVars 方法来改变变量值 window.less.modifyVars(this.theme ? lightTheme : darkTheme); } }, mounted() {} }; </script>

定义variable.js是因为如果直接将less变量放在modifyVars中切换的效果只会生效一次,所以根据切换的状态使用对应的less变量。

  1. //浅色
  2. export const lightTheme = {
  3.   "@fill-1""#fff",
  4.   "@text""#3c3c3c",
  5.   "@text-1""#757575",
  6.   "@text-2""#222",
  7. };
  8. // 深色
  9. export const darkTheme = {
  10.   "@fill-1""#222",
  11.   "@text""#fff",
  12.   "@text-1""rgba(255, 255, 255, 0.3)",
  13.   "@text-2""#ffcd32",
  14. };
  15. 复制代码

然后点击色块进行试验,发现并没有生效,这是why?然后就去看了其文档,原来它会找到所有如下的less 样式标签,并且使用已编译的css同步创建 style 标签。也就是说我们必须吧代码中所有的less 都以下面这种link的方式来引入,这样less.js 才能在浏览器端实现编译。

这里我用了vue,所以直接把 less 文件放在了public目录下,然后在html中直接引入:


点击切换按钮,可见background和color确实都变了
 

注:使用less 来实现换肤要注意 less 文件在 html 中编写的位置,不然很可能被其他css 文件所干扰导致换肤失败。 如果less文件特别大,会存在编译性能问题。

拓展-图片切换


以上的方案只是对background-color和color进行的换肤,如果要对图片进行换肤该怎么办呐?
                                     

   
                       
「图片切换」
项目中还存在很多占位图或者其他图片会随着主题的变化而变化。通过引入所有图片,并用文件名来区分不同主题所对应的图片。在点击切换主题时,切换到主题所对应的文件,就能实现图片切换了。

  1. // 页面实现
  2. <template>
  3.   <div class="header">
  4.     <div class="text">小恐龙换肤</div>
  5.     <div role="switch" class="switch" :class="theme === true ? 'is-checked' : ''">
  6.       <input type="checkbox" class="switch-input" />
  7.       <span class="switch-core" @click="changeTheme"></span>
  8.     </div>
  9.   </div>
  10. </template>
  11. <script>
  12. import { initTheme } from "../../theme";
  13. import bus from "../../bus";
  14. export default {
  15.   name: "m-header",
  16.   data() {
  17.     return {
  18.       theme: true// false深色主题
  19.       avatar: ""
  20.     };
  21.   },
  22.   methods: {
  23.     changeTheme() {
  24.       this.theme = !this.theme;
  25.       initTheme(this.theme);
  26.       this.setThemeValue(this.theme);
  27.       bus.$emit("changeTheme", this.theme);
  28.     },
  29.     setThemeValue(theme) {
  30.       theme = theme ? "light" : "dark";
  31.       this.avatar = require(`@/assets/images/logo-${theme}.jpeg`);
  32.     }
  33.   },
  34.   created() {
  35.     this.setThemeValue(this.theme);
  36.   }
  37. };
  38. </script>
  39. 复制代码

在点击切换主题时,会发射一个 changeTheme 事件,各组件接收到 changeTheme 事件,就会为图片重新赋值,也就达到了切换图片的效果。

最后


很感谢能在百忙中抽出时间把这篇文章看完的小伙伴们:)
如果还有什么疑问或者建议,可以多多交流,原创文章,文笔有限,才疏学浅,文中若有不正之处,万望告知。
好了,本文到此结束,希望对你有帮助 :)

                                        

参考文献

sass官网:www.sasscss.com/documentati…
less官网:www.html.cn/doc/less/us…
css变量:developer.mozilla.org/zh-CN/docs/…
css-vars-ponyfill:www.npmjs.com/package/css…
element-ui:element.eleme.cn/#/zh-CN/the…
postcss:www.npmjs.com/package/pos…
postcss-custom-properties:github.com/postcss/pos…
聊一聊前端换肤:juejin.cn/post/684490…

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/133615
推荐阅读
相关标签
  

闽ICP备14008679号