gpt4 book ai didi

webpack - 使用 Webpack 在 JavaScript 和 SASS 之间共享类名?

转载 作者:行者123 更新时间:2023-12-04 12:45:42 24 4
gpt4 key购买 nike

如何使用 Webpack 在 JavaScript 和 SASS 之间共享类名作为变量?

我已经通过这种方式共享了一个整数:

在我的 SASS 中:

$animationSpeed: 400;
:export {
animationSpeed: $animationSpeed;
}

在我的 JS 中:
import styles from './styles.scss';
const animationSpeed = parseInt(styles.animationSpeed);

我可以在我的 SASS 中使类名成为一个变量:
$animationClass: item--animating;
:export {
animationClass: $animationClass;
}
.#{$animationClass} {
// styles here
}

然而,这在我的 JS 中确实有效。我认为它是因为 parseInt 用于整数。
const animationClass = parseInt(styles.animationClass);

最佳答案

哦!这真的很简单:

$animationClass: item--animating;
:export {
animationClass: $animationClass;
}
.#{$animationClass} {
// styles here
}

import styles from './styles.scss';
const animationClass = styles.animationClass;

关于webpack - 使用 Webpack 在 JavaScript 和 SASS 之间共享类名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45999411/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com