当前位置:   article > 正文

vue 结合scss实现前台主题颜色动态变化_vue动态修改$--color-primary

vue动态修改$--color-primary

1、安装scss,参考文章:

vue项目中设置全局引入scss,使每个组件都可以使用变量 - 简书在Vue项目中使用scss,如果写了一套完整的有变量的scss文件。那么就需要全局引入,这样在每个组件中使用。 可以在mian.js全局引入,下面是使用方法。 1: 安装no...https://www.jianshu.com/p/2129f7d704292、在 assets/styles下新建.scss文件,定义想要变化的颜色和主题。(只列举部分颜色)

  1. // -------------------------------更换的系统主题颜色2(Standard)-----------------------------------//
  2. // 菜单所有未选中文字样式
  3. $menuTextStandard: #333333;
  4. // 一级菜单样式
  5. $menuBgStandard: #ffffff;
  6. // 一级菜单鼠标悬浮
  7. $menuHoverStandard: #f7f7f7;
  8. // 一级菜单选中时文字样式
  9. $subMenuActiveTextStandard: #82ba00;
  10. // 选中背景:
  11. $subMenuActiveBgStandard: #e6f1cc;
  12. // -------------------------------更换的系统主题颜色3(StandardRed)-----------------------------------//
  13. // 菜单所有未选中文字样式
  14. $menuTextStandardRed: #333333;
  15. // 一级菜单样式
  16. $menuBgStandardRed: #ffffff;
  17. // 一级菜单鼠标悬浮
  18. $menuHoverStandardRed: #f7f7f7;
  19. // 一级菜单选中时文字样式
  20. $subMenuActiveTextStandardRed: #911844;
  21. // 选中背景:
  22. $subMenuActiveBgStandardRed: #e9d1da;
  23. // -------------------------------更换的系统主题颜色4(StandardSkyBlue)-----------------------------------//
  24. // 菜单所有未选中文字样式
  25. $menuTextStandardSkyBlue: #333333;
  26. // 一级菜单样式
  27. $menuBgStandardSkyBlue: #ffffff;
  28. // 一级菜单鼠标悬浮
  29. $menuHoverStandardSkyBlue: #f7f7f7;
  30. // 一级菜单选中时文字样式
  31. $subMenuActiveTextStandardSkyBlue: #008299;
  32. // 选中背景:
  33. $subMenuActiveBgStandardSkyBlue: #cce6eb;

3、为需要切换的5个颜色在下面定义方法动态切换颜色:(注意部分样式要加 import 才会生效)

  1. @mixin menuText($color) {
  2. color: $color;
  3. // /*判断匹配*/
  4. [data-theme="standard"] & {
  5. color: $menuTextStandard;
  6. }
  7. [data-theme="standardRed"] & {
  8. color: $menuTextStandardRed;
  9. }
  10. [data-theme="standardSkyBlue"] & {
  11. color: $menuTextStandardSkyBlue;
  12. }
  13. }
  14. @mixin menuBg($color) {
  15. background-color: $color !important;
  16. // /*判断匹配*/
  17. [data-theme="standard"] & {
  18. background-color: $menuBgStandard !important;
  19. }
  20. [data-theme="standardRed"] & {
  21. background-color: $menuBgStandardRed !important;
  22. }
  23. [data-theme="standardSkyBlue"] & {
  24. background-color: $menuBgStandardSkyBlue !important;
  25. }
  26. }
  27. @mixin menuHover($color) {
  28. background-color: $color;
  29. // /*判断匹配*/
  30. [data-theme="standard"] & {
  31. background-color: $menuHoverStandard;
  32. }
  33. [data-theme="standardRed"] & {
  34. background-color: $menuHoverStandardRed;
  35. }
  36. [data-theme="standardSkyBlue"] & {
  37. background-color: $menuHoverStandardSkyBlue;
  38. }
  39. }
  40. @mixin subMenuActiveText($color) {
  41. color: $color !important;
  42. // /*判断匹配*/
  43. [data-theme="standard"] & {
  44. color: $subMenuActiveTextStandard !important;
  45. }
  46. [data-theme="standardRed"] & {
  47. color: $subMenuActiveTextStandardRed !important;
  48. }
  49. [data-theme="standardSkyBlue"] & {
  50. color: $subMenuActiveTextStandardSkyBlue !important;
  51. }
  52. }
  53. @mixin subMenuActiveBg($color) {
  54. background-color: $color !important;
  55. // /*判断匹配*/
  56. [data-theme="standard"] & {
  57. background-color: $subMenuActiveBgStandard !important;
  58. }
  59. [data-theme="standardRed"] & {
  60. background-color: $subMenuActiveBgStandardRed !important;
  61. }
  62. [data-theme="standardSkyBlue"] & {
  63. background-color: $subMenuActiveBgStandardSkyBlue !important;
  64. }
  65. }

4、在main.js 中引入文件:

import './assets/styles/variables.scss'

5、在所有页面需要变色的颜色上使用:

  1. // color:#f7f7f7 改为:
  2. @include menuText();

6、App.vue 中一键全局更改主题颜色:

  1. function setAttribute(theme) {
  2. window.document.documentElement.setAttribute("data-theme", theme);
  3. }
  4. setAttribute("standard"); // 应用主题2
  5. setAttribute("standardRed"); // 应用主题3

本文参考链接:

vue+scss动态改变主题颜色 - 就这样吧丶 - 博客园1、新建.scss后缀公用文件,放在assets或者其他地方都可以 /*需要切换的颜色变量*/ $color-primary1:#1776E1; /* 更换的颜色 */ $color-primary2https://www.cnblogs.com/wtwebskill/p/11812687.html

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号