码迷,mamicode.com
首页 > Web开发 > 详细

通过css属性实现可变化的全局样式变量

时间:2020-11-27 11:40:32      阅读:16      评论:0      收藏:0      [点我收藏+]

标签:oba   type   代理   val   export   css   glob   key   for   

// 代理访问和设置
const options = {
  // 主题色
  themeColor: ‘red‘,
  // 文本主颜色
  textColor: ‘#333‘,
  // h1 h2 h3 h4 h5
  h1: ‘1.6rem‘,
  h2: ‘1.4rem‘,
  h3: ‘1.2rem‘,
  h4: ‘1rem‘,
  h5: ‘0.8rem‘
};

const policy = {
  themeColor: ‘--theme-color‘,
  textColor: ‘--text-color‘,
  h1: ‘--h-1‘,
  h2: ‘--h-2‘,
  h3: ‘--h-3‘,
  h4: ‘--h-4‘,
  h5: ‘--h-5‘,
};

function setGlobalProperty (type: string, val: string): string {
  document.body.style.setProperty(policy[type], val);
  return val;
}

Reflect.ownKeys(options).forEach((key: any) => {
  setGlobalProperty(key, options[key]);
});

export default function useGlobal () {
  return [{ ...options }, setGlobalProperty]
}

通过css属性实现可变化的全局样式变量

标签:oba   type   代理   val   export   css   glob   key   for   

原文地址:https://www.cnblogs.com/smallZoro/p/14029962.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!