17 lines
299 B
SCSS
17 lines
299 B
SCSS
@use 'sass:math';
|
|
|
|
//默认设计稿的宽度
|
|
$designWidth: 3822;
|
|
//默认设计稿的高度
|
|
$designHeight: 1080;
|
|
|
|
//px转为vw的函数
|
|
@function vw($px) {
|
|
@return math.div($px, $designWidth) * 100vw;
|
|
}
|
|
|
|
//px转为vh的函数
|
|
@function vh($px) {
|
|
@return math.div($px, $designHeight) * 100vh;
|
|
}
|