效果图:图片描述
框架版本:图片描述
第一种方案:使用scss预处理器。思路是通过点击事件,控制body上自定义属性的值,利用scss @mixin指令实现切换CSS样式。具体代码实现如下

  1. 在assests文件夹下新建base.scss(主题参数变量)和mixin.scss两个样式文件
    base.scss:

    $background-color-blue: #1dd3f3;
    $background-color-black: #0c0b0b;

    mixin.scss:

    @import './base.scss';
    @mixin bg_color() {
      :host-context([data-theme='blue']) & {
        background-color: $background-color-blue;
      }
      :host-context([data-theme='black']) & {
        background-color: $background-color-black;
      }
    }
  2. 全局styles.scss样式文件引入mixin.scss文件

    @import './assets/scss/mixin.scss';
  3. 在app.component.scss中应用定义在mixin.scss文件中的样式

    @import '../styles.scss';
    .toolbar_scss{
        @include bg_color
    }
  4. 修改app.component.html文件(使用mat-menu标签需要安装material组件库,执行ng add @angular/material命令后,在app.module.ts中引入MatIconModule, MatMenuModule即可)

    <div class="spacer">
      <button mat-icon-button [matMenuTriggerFor]="menu" aria-label="Example icon-button with a menu">
        <mat-icon>more_vert</mat-icon>
      </button>
      <mat-menu #menu="matMenu" style="margin-top: 68px">
        <button mat-menu-item (click)="changeTheme('blue')">
          <mat-icon>dialpad</mat-icon>
          <span>蓝色</span>
        </button>
        <button mat-menu-item (click)="changeTheme('black')">
          <mat-icon>voicemail</mat-icon>
          <span>黑色</span>
        </button>
      </mat-menu>
    </div>
  5. app.component.ts文件通过点击事件控制body上自定义属性的值,并存入localStorage中

      export class AppComponent {
        title = 'angular-ui';
        themeUI: string;
      
        ngOnInit() {
          this.setTheme();
        }
      
        changeTheme(theme: string) {
          const body = document.getElementsByTagName('body')[0];
          const currentTheme = body.getAttribute(`data-theme`);
          if (currentTheme !== theme) {
            body.setAttribute('data-theme', theme);
            this.saveTheme(theme)
          }
        }
      
        saveTheme(theme: string) {
          localStorage.setItem(`theme`, theme);
        }
      
        setTheme() {
          this.themeUI = localStorage.getItem('theme') || 'blue'
          const body = document.getElementsByTagName('body')[0];
          body.setAttribute('data-theme', this.themeUI);
        }
      }

    总结:@mixin bg_color()生效原理利用了:host-context() 伪类选择器。它类似 :host() 形式使用。它在当前组件宿主元素的祖先节点中查找 CSS 类, 直到文档的根节点为止。
    参考:https://segmentfault.com/a/11...


菜鸟专家
17 声望5 粉丝

不会写BUG的菜鸟专家