1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
| //默认设计稿的宽度
| $designWidth: 3840;
| //默认设计稿的高度
| $designHeight: 2160;
|
| //px转为vw的函数
| @function px2vw($px) {
| // @return math.div($px, $designWidth) * 100vw;
|
| @return ($px/$designWidth) * 100vw;
| }
| //px转为vh的函数
| @function px2vh($px) {
| // @return math.div($px, $designHeight) * 100vh;
| @return ($px/$designHeight) * 100vh;
| }
|
|