前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >基于scss的主题变换

基于scss的主题变换

作者头像
公众号---人生代码
发布2020-05-18 16:15:31
9990
发布2020-05-18 16:15:31
举报
文章被收录于专栏:人生代码

最近老大让我调整xframe中图标,因为要换肤,所以我刚好学习一下换肤的原理,

主要是参考这两篇文章

项目主要的目录如下图,只能放到这里再多就泄露代码了

主要的文件有

themeVariable.scss 主题变量

variable.scss 主要是定义一些变量

themeMixin.scss 主要实现

@mixin

接下来我们就来实现以下主题切换的方式

首先 是 themeVariable.scss

代码语言:javascript
复制
// 五种主题切换
$themes: (
  red: (
    font-color: red,
  ),
  green: (
    font-color: green
  ),
  blue: (
    font-color: blue
  ),
  orange: (font-color: orange),
  yellow: (font-color: yellow),
);

这里red,green,blue等,可以用变量代替,因此就出现了variable.scss

代码语言:javascript
复制
$color-red: red;
$color-green: green;
$color-blue: blue;
$color-orange: orange;
$color-yellow: yellow;

最后就是 themeMixin.scss 使用

@Mixin

代码语言:javascript
复制
@import "./themeVariable.scss";
@mixin themify($themes: $themes) {
  @each $theme-name, $map in $themes {
    // & 表示父级元素
    // !global 表示覆盖原来的
    .theme-#{$theme-name} & {
      $theme-map: () !global;
      // 循环合并键值对
      @each $key, $value in $map {
        $theme-map: map-merge($theme-map, ($key: $value)) !global;
      }
      // 表示包含 下面函数 themed()
      @content;

      $theme-map: null !global;
    }
  }
}

@function themed($key) {
  @return map-get($theme-map, $key);
}

最后就是使用了

代码语言:javascript
复制
<template>
  <div class="app-root" :class="themeClass">
    <div class="app-container">
      <p>{{ msg }}</p> 
      <select v-model="theme">
        <option value="red">Red</option>
        <option value="green">Green</option>
        <option value="blue">Blue</option>
      </select>
    </div>
  </div>
</template>
<script>
export default {
  name: 'app',
  data() {
    return {
      msg: 'Dynamic Themes',
      theme: 'red'
    }
  },
  computed: {
    themeClass() {
      return `theme-${this.theme}`;
    }
  }
}

</script>
<style lang="scss" scoped>
@import "../assets/css/themfy.scss";
.app-container {
  @include themify($themes) {
    color: themed('font-color');
  }
}
</style>

最后效果如下

注意下面的class会变化

本文参与 腾讯云自媒体同步曝光计划,分享自微信公众号。
原始发表:2020-05-15,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 CryptoCode 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档