sass编译css时出现错误

发布于 2022-09-04 08:55:03 字数 1197 浏览 16 评论 0

我在控制台可以看到输出的字符串,可是我的css文件就出错了,求解决办法。
clipboard.png

@function double($width){//自定义函数

@if $width > 3px{
    @error "$width not > 3px";
}
@return $width * 2;

}
body{

$color:rgb(255,255,255);
color:$color;
//background-color:rgba(255,0,200,05);
background-color:rgba($color,05);
 
p{
    color: darken($color,2);//颜色加深函数,加深了2倍
    background-color: lighten($color,0.9);//变浅
    z-index: str-length('aaaaaa');//6
    z-index: str-index('abcdef','d');//4,这个索引以1开头
    width: double(5px);
}

}
@Debug 'This is a debug test';
@warn 'warn';
@error 'error';//这三个在控制台进行输出

@function getzIndex($layer:default){

$zindexMap:(default:1,modal:1000,dropdown:500,grid:300);
$zindex:0;
@if map-has-key($zindexMap,$layer){
    $zindex:map-get($zindexMap,$layer);
}@else{
    $zindex:1;
};
@return map-get($zindexMap,$layer);

}
@Debug getzIndex(modal);//1000
@Debug getzIndex(asd);//1

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文