CSS中的变量应用——:root,Sass变量,JavaScript中使用Sass变量

:root------ 原生CSS 自定义属性(变量)

在 SCSS 文件中定义 CSS 自定义属性。然后通过 JavaScript 读取这些属性。

css 复制代码
// variables.scss  
:root {  
   --login-bg-color: #293146;

  --left-menu-max-width: 200px;

  --left-menu-min-width: 64px;

  --left-menu-bg-color: #001529;

  --left-menu-bg-light-color: #0f2438;

  --left-menu-bg-active-color: var(--el-color-primary);
}

使用示例

在 CSS 中,您可以通过 var() 函数来使用这些变量:

css 复制代码
.login {
  background-color: var(--login-bg-color);
}

.left-menu {
  max-width: var(--left-menu-max-width);
  min-width: var(--left-menu-min-width);
  background-color: var(--left-menu-bg-color);
}

.left-menu-item.active {
  background-color: var(--left-menu-bg-active-color);
}

在 SCSS 中使用变量

生成具体的类名,然后在 JavaScript 中通过类名来引用样式。

css 复制代码
$namespace: 'myNamespace';  
$elNamespace: 'elementNamespace';  
 
.#{$namespace}__header {  
  color: blue;  
}  
 
.#{$elNamespace}__button {  
  background-color: green;  
}

在JavaScript中使用SCSS变量

global.module.scss

css 复制代码
// 命名空间
$namespace: v;
// el命名空间
$elNamespace: el;


// 导出变量
:export {
  namespace: $namespace;
  elNamespace: $elNamespace;
}

:export: 这是一个特殊指令,用于将SASS变量导出到JavaScript中。通过这种方式,你可以在JavaScript代码中访问这些变量。

namespace: 这是导出的变量名,其值为 $namespace 的值,即 v。

elNamespace: 这是另一个导出的变量名,其值为 $elNamespace 的值,即 el。

项目中的使用

useDesign.ts

javascript 复制代码
import variables from '@/styles/global.module.scss'

export const useDesign = () => {
  const scssVariables = variables

  /**
   * @param scope 类名
   * @returns 返回空间名-类名
   */
  const getPrefixCls = (scope: string) => {
    return `${scssVariables.namespace}-${scope}`
  }

  return {
    variables: scssVariables,
    getPrefixCls
  }
}

使用useDesign.ts
Backtop.vue

javascript 复制代码
<script lang="ts" setup>
import { ElBacktop } from 'element-plus'
import { useDesign } from '@/hooks/web/useDesign'

defineOptions({ name: 'BackTop' })

const { getPrefixCls, variables } = useDesign()

const prefixCls = getPrefixCls('backtop')
</script>

<template>
  <ElBacktop
    :class="`${prefixCls}-backtop`"
    :target="`.${variables.namespace}-layout-content-scrollbar .${variables.elNamespace}-scrollbar__wrap`"
  />
</template>
相关推荐
木木黄木木38 分钟前
css炫酷的3D水波纹文字效果实现详解
前端·css·3d
美食制作家41 分钟前
【无标题】Threejs第一个3D场景
javascript·three
HelloRevit2 小时前
React DndKit 实现类似slack 类别、频道拖动调整位置功能
前端·javascript·react.js
ohMyGod_1232 小时前
用React实现一个秒杀倒计时组件
前端·javascript·react.js
艾克马斯奎普特3 小时前
Vue.js 3 渐进式实现之响应式系统——第四节:封装 track 和 trigger 函数
javascript·vue.js
JustHappy3 小时前
「我们一起做组件库🌻」虚拟消息队列?message组件有何不同?(VersakitUI开发实录)
前端·javascript·vue.js
Carlos_sam3 小时前
Openlayers:为Overlay创建element的四种方式
前端·javascript·vue.js
纵昂3 小时前
Js中常用数据转换及方法记录汇总
前端·javascript
还是鼠鼠3 小时前
Node.js中间件的5个注意事项
javascript·vscode·中间件·node.js·json·express
海底火旺3 小时前
闭包模块:JavaScript的"魔法收纳盒"
前端·javascript