当前位置:   article > 正文

Vue项目中使用Sass实现动态换肤_sass修改图片

sass修改图片

前一段时间完成了一个项目,该项目要求黑夜和白天两种主题色,可以动态的切换。经过多方的查找研究,终于完成。谨以此文在此记录一下。

此方案涉及Sass的map遍历、函数定义、map存取、混合器等相关知识,具体API详参官网https://www.sass.hk/docs/。

大概的思路就是给html根标签设置一个data-theme属性,通过js切换data-theme的属性值,sass根据此属性来判断使用对应主题变量。

具体实现步骤,以我的项目(dark、light)两种主题为例。

1.定义一个sass文件_themes.scss,存放系统中两种主题的相关颜色变量,文件位置assets目录下,代码如下

//定义全局主题&颜色的map数组,鉴于V5只有白天和晚上的主题,此处仅定义这两种
//切记 所有颜色一式两份儿,务必保证key值统一,key值可以自定义,注意避免$%_之类的,
//与sass自有符号冲突,见文知意即可
//data-theme为dark时,样式引用dark

  1. /* theme variable */
  2. $themes: (
  3. // light
  4. light:
  5. (
  6. // light theme
  7. color-primary: #3961f5,
  8. color-primary-second: #5e81f7,
  9. color-text-primary: #242f57,
  10. color-success: #04b78a,
  11. color-warning: #f2a626,
  12. color-danger: #ee2e6b,
  13. background: #fff,
  14. background-content: #f4f7fc,
  15. background-color: #eaedf7,
  16. ),
  17. //dark theme
  18. dark:
  19. (
  20. color-primary: #3961f5,
  21. color-primary-second: #5e81f7,
  22. color-text-primary: #ffffff,
  23. color-danger: #ee2e6b,
  24. background: #1d2742,
  25. background-content: #13192f,
  26. background-color: #1d2742,
  27. )
  28. );


这里定义了一个map--$themes,分别存放对应主题的颜色变量集合。

注意,scss文件名建议用下划线开头,如_themes.scss,防止执行时被编译成单独的css文件,详参sass中文教程(3.1 sass文件导入)。

2.定义另外一个sass文件_handle.scss来操作1中的$theme变量(当然两个文件可以合并,分开写是想把配置和操作解耦),上代码:

@import "@/style/_themes.scss";
//此处用了sass的map遍历、函数、map存取、混合器等相关知识,
//详细API参考https://www.sass.hk/docs/
//遍历主题map

  1. @mixin themeify {
  2.   @each $theme-name, $theme-map in $themes {
  3.     //!global 把局部变量强升为全局变量
  4.     $theme-map: $theme-map !global;
  5.     //这步是判断html的data-theme的属性值  #{}是sass的插值表达式
  6.     //& sass嵌套里的父容器标识   @content是混合器插槽,像vue的slot
  7.     [data-theme="#{$theme-name}"] & {
  8.       @content;
  9.     }
  10.   }
  11. }
  12. //声明一个根据Key获取颜色的function
  13. @function themed($key) {
  14.   @return map-get($theme-map, $key);
  15. }


//暂时想到的常用的开发场景下面三种背景颜色、字体颜色、边框颜色  至于阴影什么之类的忽略了
//获取背景颜色

  1. @mixin background_color($color) {
  2.   @include themeify {
  3.     background-color: themed($color);
  4.   }
  5. }
  6. //获取字体颜色
  7. @mixin font_color($color) {
  8.   @include themeify {
  9.     color: themed($color);
  10.   }
  11. }
  12. //获取边框颜色
  13. @mixin border_color($color) {
  14.   @include themeify {
  15.     border-color: themed($color);
  16.   }
  17. }


可以根据自己的使用场景自定义混入器,上面只定义了三个常用的,更改主题无非是更改背景&边框&字体等的颜色。

3.具体在vue中使用,直接引入对应混入器就好,取哪个颜色,传哪个key,就这么简单

  1. <style lang="scss" scoped>
  2. @import "@/style/_handle.scss";
  3.  
  4. p {
  5.   font-size: 18px;
  6.   @include font_color("font_color1");
  7.   @include background_color("background_color1");
  8.   @include border_color("border_color1");
  9. }
  10. </style>


到此,完毕了。至于怎么动态切换html的属性data-theme的值,那就驾轻就熟,js怎么干都行了,下面举例一种:

  1. <template>
  2.   <div>
  3.     <p>这里是页面</p>
  4.     <i
  5. class="iconfont el-ui-Group20"
  6. @click="handleToggleTheme(0)"
  7. :class="{ themeSelect: parseInt(index) === 0 }"
  8. ></i>
  9. <i
  10. class="iconfont el-ui-moon"
  11. @click="handleToggleTheme(1)"
  12. :class="{ themeSelect: parseInt(index) === 1 }"
  13. ></i>
  14.   </div>
  15. </template>
  16.  
  17. <script>
  18. export default {
  19.   name: "HelloWorld",
  20.   methods: {
  21.     handleToggleTheme(index) {
  22.       window.document.documentElement.setAttribute(
  23.         "data-theme",
  24.         index ? "dark" : "light"
  25.       );
  26.     }
  27.   }
  28. };

本文实现的动态换肤并非elementUi官网那种随意用ColorPicker实时更改主题的效果,而是为系统预设的几种主题事先配置颜色,然后线上触发更改主题的事件。

本项目当中也使用了element-ui组件,但是在以上变量当中没有更换eleement-ui的组件颜色。而是在eleement-ui的官网当中分别定制dark和light两种主题色,通过link标签引入到入口文件index.html当中:

然后更换link标签属性href路径来改变element-ui的主题色:

  1. handleToggleTheme(index) {
  2. this.index = index;
  3. const elementTheme = document.getElementById('elementTheme');
  4. // console.log(elementTheme.getAttribute('href'));
  5. // index is 0, theme is light
  6. // index is 1, theme is dark
  7. let theme = index === 1 ? 'dark' : 'light';
  8. this.$store.dispatch('handleActionTheme', index);
  9. elementTheme.setAttribute(
  10. 'href',
  11. `${this.publicPath}theme/${theme}/theme/index.css`
  12. );
  13. window.localStorage.setItem('theme', index);
  14. window.document.documentElement.setAttribute('data-theme', theme);
  15. this.reload();
  16. }
  17. },

 

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

闽ICP备14008679号