vue中scss使用js的变量

一、前言

在项目开发中,很多时候会涉及到scss样式变量,正常定义方式 $primary-color: rgb(188, 0, 194);;使用时直接使用即可:color: $primary-color。但是,如果,这些变量是在js中定义的怎么办

二、实现
  1. 动态绑定::style="{'--str-length': strLength}"
  2. scss 中使用 v-bind(strLength) => strLength 是js变量
html 复制代码
<template>
    <div class="typing-demo-wrapper" :style="{'--str-length': strLength}">
      <div class="typing-demo">{{ text }}</div>
    </div>
</template>

<script lang="ts" setup>
const text = ref("你好;欢迎来到自定义布局页面。");
const strLength = text.value.length; // 计算字符串长度;
</script>

<style lang="scss" scoped>
.typing-demo-wrapper {
    height: 200px;  // 父元素的元素可按实际情况处理
    overflow: auto;

    /* 实现从左到右打字效果 */
    @keyframes typing {
      from {
        width: 0
      }
    }
    /* 实现鼠标闪烁效果 */
    @keyframes blink {
      50% {
        border-color: transparent
      }
    } 
    .typing-demo {
      font-family: monospace; /* 使用等宽字体,保证每个字的宽度一致 */      
      // width: 30ch; /* 设置宽度为字符串长度 */

      // 根据字符串长度设置宽度
      width: calc(var(--str-length) * 2ch); // 使用动态绑定的css变量,计算宽度
      // width: calc(v-bind(strLength) * 2ch); // 直接使用v-bind绑定js变量

      /* typing 3s 表示3秒内打完这15个字  blink  .5s表示0.5秒闪烁一下光标*/
      animation: typing 3s steps(v-bind(strLength)), blink .5s step-end infinite alternate;
      white-space: nowrap;
      overflow: hidden;
      /* 鼠标光标用右边的边框代替 */
      border-right: 2px solid red;
      font-size: 2em; 
    }
  }
</style>

文章仅为本人学习过程的一个记录,仅供参考,如有问题,欢迎指出!

相关推荐
全马必破三1 小时前
CSS 和 JS 如何阻塞浏览器渲染 DOM
javascript
c***V3232 小时前
Vue优化
前端·javascript·vue.js
努力往上爬de蜗牛3 小时前
react native真机调试
javascript·react native·react.js
y***86695 小时前
TypeScript在Electron应用中的使用
javascript·typescript·electron
zy happy7 小时前
若依 vue3 报错:找不到模块“@/api/xxxx/xxxxx”或其相应的类型声明。。Vue 3 can not find mod
前端·javascript·vue.js
meichaoWen7 小时前
【Vue3】vue3的全面学习(一)
前端·javascript·学习
b***74889 小时前
Vue开源
前端·javascript·vue.js
ByteCraze10 小时前
我整理的大文件上传方案设计
前端·javascript
前端小白۞10 小时前
vue2 md文件预览和下载
前端·javascript·vue.js
5***790012 小时前
Vue项目性能优化
前端·javascript·vue.js