Table of Contents
1. 字符串函数
1.1 quote()
1.2 unquote()
1.3 str-length()
1.4 to-upper-case()
1.5 to-lower-case()
2. 数字函数
2.1 percentage()
2.2 round()
2.3 ceil()
2.4 floor()
2.5 abs()
2.6 min() max()
2.7 random()
3. 列表函数
3.1 length() nth()
3.2 join()
3.3 index()
3.4 list-separator()
4. Introspection 函数
4.1 type-of()
4.2 unit()
4.3 unitless()
5. Miscellaneous 函数
6. 颜色函数
6.1 RGB函数()
7. Reference API
Home Web Front-end HTML Tutorial CSS外挂:Sass的那些装逼函数(function)_html/css_WEB-ITnose

CSS外挂:Sass的那些装逼函数(function)_html/css_WEB-ITnose

Jun 21, 2016 am 08:51 AM

前戏:前几篇文章其实都是些基础必备的,什么变量、继承、占位符、混合宏...这回来高级点的,玩玩 Sass自带的一些函数...有字符串函数( String Functions)、数字函数( Number Functions)、列表函数( List Functions)、颜色函数( Color Functions)、 Introspection函数( Introspection Functions)、三元函数( Miscellaneous Function)

1. 字符串函数

1.1 quote()

quote($string)给 $string前后添加引号。

//SCSS:p:after{  content: quote(hello +' '+ sass);   //中间有空格(其他特殊符号)需要拼字符串;quote(hello sass); 直接这样会报错;}p:before{  content: quote('This\'s' + ' ' + 'bug');  //如果$string本身就带有引号,则会统一换成双引号`""`;}//编译为:p:after { content: "hello sass"; }p:before { content: "This's bug"; }
Copy after login

1.2 unquote()

unquote($string)删除 $string前后的引号。

//SCSS:p:after{  content: unquote("This's bug"); //中间的引号未被删除;}p:before{  content: unquote(Thissbug);  //如$string本身就不带引号,则返回$string本身;}//编译为:p:after { content: This's bug; }p:before { content: sass; }
Copy after login

其实吧!这俩玩意在项目中我还真没用到过!

1.3 str-length()

str-length($string)返回 $string的长度。

//SCSS:p:before { content: str-length('hello sass!'); }//编译为:p:before { content: 11; }
Copy after login

1.4 to-upper-case()

to-upper-case($string)将 $string小写字母转成大写字母。

//SCSS:p:before { content: to-upper-case('hello sass!'); }//编译为:p:before { content: "HELLO SASS!"; }
Copy after login

1.5 to-lower-case()

to-lower-case($string)将 $string大写字母转成小写字母。

//SCSS:p:before { content: to-lower-case('HELLO SASS!'); }//编译为:p:before { content: "hello sass!"; }
Copy after login

2. 数字函数

2.1 percentage()

percentage($number)将一个不带单位的数值转成百分比。

//SCSS:.box{ width: percentage(.5)}.box2{ width: percentage(.1rem / .3rem)}
Copy after login

经测试,两个相同的单位,除了用除法 '/' 其他+-%均会报错,且用除法 '/' 也只能在两个相同类型的单位之间进行运算;*

//编译为:.box { width: 50%; }.box2 { width: 33.33333%; }
Copy after login

2.2 round()

round($number)将 $number四舍五入为整数, $number可带单位。

//SCSS:.xs-row{ width: round(33.33333333333333px)}//编译为:.xs-row { width: 33px; }
Copy after login

2.3 ceil()

ceil($number)大于 $number,向上取整。

//SCSS.fs14{ font-size: ceil(13.1px)}.fs16{ font-size: ceil(15.9px)}//编译为:.fs14 { font-size: 14px; }.fs16 { font-size: 16px; }
Copy after login

2.4 floor()

与 ceil()相反, floor($number)去除 $number小数,向下取整。

//SCSS:.fs14{ font-size: floor(14.1px) }.fs16{ font-size: floor(16.9px) }//编译为:.fs14 { font-size: 14px; }.fs16 { font-size: 16px; }
Copy after login

2.5 abs()

abs($number),返回 $number的绝对值。

//SCSS:.fs16{ font-size: abs(-1.6rem) }.fs18{ font-size: abs(1.8rem) }//编译为:.fs16{ font-size: 1.6rem; }.fs18{ font-size: 1.8rem; }
Copy after login

2.6 min() max()

min($numbers…),返回 $number...的最小值。

max($numbers…),返回 $number...的最大值。

//SCSS:div{ width: min(2rem, 10rem) }div{ width: max(2rem, 10rem) }div{ width: max(2px, 10rem) } //非相同的单位,报错//编译为:div { width: 2rem; }div { width: 10rem; }Incompatible units: 'rem' and 'px'
Copy after login

2.7 random()

random([$limit]),返回一个随机数。

//SCSS:div {    height: random(); //直接调用    width: random(666); //传个参}//编译为:div {  height: 0.3649;  width: 403;}
Copy after login

3. 列表函数

常用

3.1 length() nth()

length($list),返回 $list的长度值;

nth($list, $n),返回 $list中指定的某个 $n,且 $n必须是大于0的整数;

Javascript的Array()的索引是从0开始的,厄...有点扯远了,用过 css3的 :nth-child(n)都应该知道啦,索引下标也是从1开始的,So.....

//SCSS:$list: google, baidu, sogo;@for $i from 1 through length($list){ //取$list的length并循环输出;  .icon-#{nth($list, $i)}{ //$list中的某个索引值;    content: '#{nth($list, $i)}'  }}//编译为:.icon-google { content: "google"; }.icon-baidu { content: "baidu"; }.icon-sogo { content: "sogo"; }
Copy after login

3.2 join()

join($list1, $list2, [$separator])将两个列表给连接在起来,组成一个列表;

$separator默认值是 auto,另外还有 comma和 space两个值,其中 comma值指定列表中的列表项值之间使用逗号 ,隔开, space值指定列表中的列表项值之间使用 空 格分隔。

join((blue, red), (#abc, #def), space) => blue red #abc #def //spacejoin(10px, 20px, comma) => 10px, 20px //comma
Copy after login

Examples:

//SCSS:$list1: google, baidu, sogo;$list2: facebook, instagram, twitter;$list3: join($list1, $list2); //讲真啦,很少用到join(),反正我是很少用到;@for $i from 1 through length($list3){  .icon-#{nth($list3, $i)}{    content: '#{nth($list3, $i)}'  }}//编译为:.icon-google { content: "google"; }.icon-baidu { content: "baidu"; }.icon-sogo { content: "sogo"; }.icon-facebook { content: "facebook"; }.icon-instagram { content: "instagram"; }.icon-twitter { content: "twitter"; }
Copy after login

3.3 index()

index($list, $value),返回 $list中的 $value所在的位置。

index(1px solid red, solid) => 2index(1px solid red, dashed) => nullindex((width: 10px, height: 20px), (height 20px)) => 2
Copy after login

3.4 list-separator()

list-separator($list),返回 $list中的分隔符。

list-separator(1px 2px 3px) => spacelist-separator(1px, 2px, 3px) => commalist-separator('foo') => space
Copy after login

4. Introspection 函数

4.1 type-of()

type_of($value)返回 $value的类型。

type-of(abc)   => stringtype-of("abc") => stringtype-of(true)   => booltype-of(#fff)   => colortype-of(green)   => color
Copy after login

4.2 unit()

unit($number)返回 $number所使用的单位。

unit(100) => ""unit(100px) => "px"unit(3em) => "em"unit(10px * 5em) => "em*px"unit(10px * 5em / 30cm / 1rem) => "em*px/cm*rem"
Copy after login

4.3 unitless()

unitless($number)返回 $number是否带有单位;如果不带单位返回值为 true,带单位返回值为 false。

unitless(100) => trueunitless(100px) => false
Copy after login

5. Miscellaneous 函数

Miscellaneous函数称为三元条件函数,主要因为他和 JavaScript中的三元判断非常的相似。他有两个值,当条件成立返回一种值,当条件不成立时返回另一种值

if($condition, $if-true, $if-false)
Copy after login

当 $condition条件为真,则返回 $if-true值,否则返回 $if-false值。

if(true, 1px, 2px) => 1pxif(false, 1px, 2px) => 2px
Copy after login

6. 颜色函数

暂时还没用到过。

6.1 RGB函数()

rgb($red, $green, $blue),根据 $red、 $green、 $blue三个值创建一个颜色;

rgba($red, $green, $blue, $alpha),将一个颜色根据透明度转换成 rgba 颜色。

rgba(#102030, 0.5) => rgba(16, 32, 48, 0.5)rgba(blue, 0.2)    => rgba(0, 0, 255, 0.2)
Copy after login

7. Reference API

Sass::Script::Functions — Sass Documentation

结语:既然你都看到这里了,我就说说吧,这些个函数其实也就在自己写插件的时候有用,其他时候可能会有些大材小用。

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

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)

Is HTML easy to learn for beginners? Is HTML easy to learn for beginners? Apr 07, 2025 am 12:11 AM

HTML is suitable for beginners because it is simple and easy to learn and can quickly see results. 1) The learning curve of HTML is smooth and easy to get started. 2) Just master the basic tags to start creating web pages. 3) High flexibility and can be used in combination with CSS and JavaScript. 4) Rich learning resources and modern tools support the learning process.

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

The Roles of HTML, CSS, and JavaScript: Core Responsibilities The Roles of HTML, CSS, and JavaScript: Core Responsibilities Apr 08, 2025 pm 07:05 PM

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

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 <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 an example of a starting tag in HTML? What is an example of a starting tag in HTML? Apr 06, 2025 am 12:04 AM

AnexampleofastartingtaginHTMLis,whichbeginsaparagraph.StartingtagsareessentialinHTMLastheyinitiateelements,definetheirtypes,andarecrucialforstructuringwebpagesandconstructingtheDOM.

Understanding HTML, CSS, and JavaScript: A Beginner's Guide Understanding HTML, CSS, and JavaScript: A Beginner's Guide Apr 12, 2025 am 12:02 AM

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Apr 04, 2025 pm 11:54 PM

GiteePages static website deployment failed: 404 error troubleshooting and resolution when using Gitee...

See all articles