Table of Contents
1、安装
2、使用
gulp-sass的使用
3、基本用法
3.1 变量
3.2计算功能
3.3嵌套
3.4注释
4、代码的重用
4、1继承
4.2 Mixin
4.3 颜色函数
4.4插入文件
5、高级用法
5、1条件语句
5、2循环语句
5、3自定义函数
Home Web Front-end HTML Tutorial sass使用笔记_html/css_WEB-ITnose

sass使用笔记_html/css_WEB-ITnose

Jun 21, 2016 am 08:58 AM

sass(Syntactically Awesome Style Sheets)是一个css预处理器,提供了许多便利的写法。sass坚持了DRY(don`t repeat yourself)的原则,它可以提高css的开发效率,并使css更利于维护。

1、安装

安装gulp-sass插件安装命令如下

1

npm install gulp-sass --save-dev

Copy after login

2、使用

sass有两种后缀文件名.sass和.scss

使用.sass的时候不能使用大括号,使用回车和至少两个空格来区分选择器和规则

示例:

1

p    color:#f00;b    background:#ddd;

Copy after login

使用.scss时,基本和平时写css差不多,使用大括号来区分选择器和规则。正因为scss可以兼容css,更符合我们平常的书写习惯,所以一般我们都采用scss为后缀名。

示例:

1

p{    color:#f00;}b{    background:#ddd;}

Copy after login

gulp-sass的使用

1

var gulp = require('gulp');var gulp-sass = require('gulp-sass');gulp.task('sass',function(){    gulp.src('./sass/**/*.scss')    .pipe(sass(outputStyle:'compressed'))    .pipe(gulp.dest('./css'));});

Copy after login

以上为gulp-sass的基本用法,即引用gulp和gulp-sass插件,然后读取scss文件进行编译,输出格式为compressed,并将编译成功的css文件输出到css文件夹。

欲了解更多关于gulp-sass插件的用法,请点击这里跳转

3、基本用法

3.1 变量

所有变量以$开头,sass使用冒号(:)来定义一个变量。

1

$blue:#1875e7;div{    color:$blue;}

Copy after login

以上代码将被编译成

1

div{color:#1875e7;}

Copy after login

如果变量需要嵌在字符串中,就必须写在#{}中

1

$side:left;    div{    border-#{side}-radius:5px;}

Copy after login

以上代码将被编译成

1

div{border-left-radius:5px;}

Copy after login

3.2计算功能

sass允许在代码中使用算式。sass中的算术操作符有:

  • 加(+)
  • 减(-)
  • 乘(*)
  • 除(/)
  • 取余(%)

注意上面的操作符只能用于单位相同的数值运算。

1

h2{    font-size:5px+2em;//错误!!!编译报错    font-size:5px+2;//7px}

Copy after login

此外,两个相同单位的数值相乘无法生成有效的css

1

h2{font-size:5px*2px;}//invalid css

Copy after login

/操作符本身就是css简写语法的一部分如:font:16px/24px Arial;但是sass重载了这个运算符,用于执行除法操作,下面让我们看它是如何解析的:

1

h2{     //不执行除法操作,原样输出    font-size:16px/24px;    //使用差值语法之后,原样输出    font-size:#{$base-size}/#{$line-height};    //使用括号包裹之后,执行除法操作    font-size:(16px/24px);    //使用变量,执行除法操作    font-size:$base-size/$line-height;    //调用函数,执行除法操作    opacity:random(4)/5;    //使用算术操作符,执行除法操作    padding-right:2px/4px+3px;}

Copy after login

操作符的优先级:

  • 括号优先级最高
  • 乘法,除法优先于加法,减法

写一个简单的计算示例:

1

$var:2;body{    margin:(14px/2);    top:50px+100px;    right:$var*10%;}

Copy after login

以上代码将被编译成

1

body{margin:7px;top:150px;right:20%;}

Copy after login

3.3嵌套

就是我写代码是最最常用的用法ps:属性也可以嵌套,比如:

1

p{    border:{        color:red;    }}

Copy after login

注意:border后面必须加上冒号

3.4注释

sass中有两种注释

1

//......(编译后被省略)/*......*/(保留到编译后)

Copy after login

4、代码的重用

4、1继承

sass允许一个选择器继承另一个选择器

1

.class1{}.class2{    @extend .class1;    .......}

Copy after login

4.2 Mixin

Mixin有点像C语言的宏,是可以重用的代码块使用@Mixin定义一个代码块

1

@mixin left{    float:left;    margin-left:10px;}

Copy after login

使用@include命令,调用mixin

1

div{    @include left}

Copy after login

mixin的强大之处在于,可以指定参数和缺省值

1

@mixin left($value:10px){    float:left;    margin-right:$value;}

Copy after login

使用的时候加入参数

1

div{    @include left(20px);}

Copy after login

4.3 颜色函数

sass提供了一些内置的颜色函数,以便生成系列颜色

1

lighten(#ccc,10%);darken(#ccc,10%);grayscale(#ccc);complement(#ccc);

Copy after login

4.4插入文件

@import命令,插入外部文件@import "......";@import可以导入css文件,也可以导入sass文件导入css文件,仍是以@import存在,这种方式在css中是不推荐使用的,因为,@import引用的CSS会等到页面全部被下载完再被加载。所以有时候浏览@import加载CSS的页面时开始会没有样式(就是闪烁),网速慢的时候还挺明显。导入sass文件的时候,在编译的时候实际是把两个sass文件合并,编译成一个css文件。

5、高级用法

5、1条件语句

@if...@else....

1

@mixin txt($weight){    @if $weight == bold {font-weight:bold;}    @else if $weight == light {font-weight:100;}    @else if $weight == heavy {font-weight:900;}    @else {font-size:normal;}}.txt1{    @include txt(bold);  }.txt2{    @include txt(light);  }.txt3{    @include txt(heavy);  }

Copy after login

以上代码将被编译成:

1

.txt1{font-weight:blod;}.txt2{font-weight:100;}.txt3{font-weight:900;}

Copy after login

5、2循环语句

@for@for有两种使用方式:from start to end,遍历范围[start,end-1]from start through end,遍历范围[start,end]

1

@for $i from 1 to 10{    .border-#{$i}{        border:#{$i}px solid blue;    }}

Copy after login

这段sass代码会被编译成

1

.border-1{border:1px solid blue;}.border-2{border:2px solid blue;}.border-3{border:3px solid blue;}.border-4{border:4px solid blue;}.border-5{border:5px solid blue;}.border-6{border:6px solid blue;}.border-7{border:7px solid blue;}.border-8{border:8px solid blue;}.border-9{border:9px solid blue;}

Copy after login

@while

1

$i:1; @while $i<5{    .item-#{$i}{width:2em*$i;}    $i:$i+1;}

Copy after login

以上代码将被编译成

1

.item-1 {width: 2em; }.item-2 {width: 4em; }.item-3 {width: 6em; }.item-4 {width: 8em; }

Copy after login

@each@each指令同样可以用于循环输出,和@for的区别在于,@each是通过遍历list或者map实现循环输出的。

1

@each $member in a,b,c,d{    .#{$member}{        background-image:url("/images/#{$member}.jpg");    }}

Copy after login

以上代码将被编译成

1

.a{background-image:url("/image/a.jpg");}.b{background-image:url("/image/b.jpg");}.c{background-image:url("/image/c.jpg");}.d{background-image:url("/image/d.jpg");}

Copy after login

5、3自定义函数

sass允许用户自定义函数

1

@function double($n){    @return $n*2;}div{    width:double(5px);}

Copy after login

以上代码将被编译成

1

div{width:10px}

Copy after login

在我们的项目中经常会被用来计算百分比,或者根据html元素的font-size大小来计算rem比如

1

@function to_rem($px){    @return $px/50 + rem;}.a{width:to_rem(30);}

Copy after login

以上代码将被编译成:

1

.a{width:0.6rem}

Copy after login

本文整理自网络及《sass与compass实战》,之后将继续完善更新。参考文章:Sass的表达式和控制命令

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update? Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update? Mar 04, 2025 pm 12:32 PM

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

How to efficiently add stroke effects to PNG images on web pages? How to efficiently add stroke effects to PNG images on web pages? Mar 04, 2025 pm 02:39 PM

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

How do I use HTML5 form validation attributes to validate user input? How do I use HTML5 form validation attributes to validate user input? Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

What are the best practices for cross-browser compatibility in HTML5? What are the best practices for cross-browser compatibility in HTML5? Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

What is the purpose of the <iframe> tag? What are the security considerations when using it? What is the purpose of the <iframe> tag? What are the security considerations when using it? Mar 20, 2025 pm 06:05 PM

The article discusses the &lt;iframe&gt; tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

See all articles