摘要:,返回的最大值。非相同的單位,報錯編譯為,返回一個隨機數。函數函數稱為三元條件函數,主要因為他和中的三元判斷非常的相似。顏色函數暫時還沒用到過。函數,根據三個值創建一個顏色將一個顏色根據透明度轉換成顏色。
1. 字符串函數 1.1 quote()前戲:前幾篇文章其實都是些基礎必備的,什么變量、繼承、占位符、混合宏...這回來高級點的,玩玩Sass 自帶的一些函數...有字符串函數(String Functions)、數字函數(Number Functions)、列表函數(List Functions)、顏色函數(Color Functions)、Introspection 函數(Introspection Functions)、三元函數(Miscellaneous Function)
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"; }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; }
其實吧!這倆玩意在項目中我還真沒用到過!
1.3 str-length()str-length($string) 返回 $string 的長度。
//SCSS: p:before { content: str-length("hello sass!"); } //編譯為: p:before { content: 11; }1.4 to-upper-case()
to-upper-case($string) 將$string小寫字母轉成大寫字母。
//SCSS: p:before { content: to-upper-case("hello sass!"); } //編譯為: p:before { content: "HELLO SASS!"; }1.5 to-lower-case()
to-lower-case($string) 將$string大寫字母轉成小寫字母。
//SCSS: p:before { content: to-lower-case("HELLO SASS!"); } //編譯為: p:before { content: "hello sass!"; }2. 數字函數 2.1 percentage()
percentage($number) 將一個不帶單位的數值轉成百分比。
//SCSS: .box{ width: percentage(.5)} .box2{ width: percentage(.1rem / .3rem)}
經測試,兩個相同的單位,除了用除法 "/" 其他+-%均會報錯,且用除法 "/" 也只能在兩個相同類型的單位之間進行運算;*
//編譯為: .box { width: 50%; } .box2 { width: 33.33333%; }2.2 round()
round($number) 將$number 四舍五入為整數,$number可帶單位。
//SCSS: .xs-row{ width: round(33.33333333333333px)} //編譯為: .xs-row { width: 33px; }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; }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; }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; }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"2.7 random()
random([$limit]),返回一個隨機數。
//SCSS: div { height: random(); //直接調用 width: random(666); //傳個參 } //編譯為: div { height: 0.3649; width: 403; }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"; }3.2 join()
join($list1, $list2, [$separator]) 將兩個列表給連接在起來,組成一個列表;
$separator 默認值是 auto,另外還有 comma 和 space 兩個值,其中 comma 值指定列表中的列表項值之間使用逗號 , 隔開,space 值指定列表中的列表項值之間使用 空 格 分隔。
join((blue, red), (#abc, #def), space) => blue red #abc #def //space join(10px, 20px, comma) => 10px, 20px //comma
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"; }3.3 index()
index($list, $value),返回 $list 中的 $value所在的位置。
index(1px solid red, solid) => 2 index(1px solid red, dashed) => null index((width: 10px, height: 20px), (height 20px)) => 23.4 list-separator()
list-separator($list),返回 $list 中的分隔符。
list-separator(1px 2px 3px) => space list-separator(1px, 2px, 3px) => comma list-separator("foo") => space4. Introspection 函數 4.1 type-of()
type_of($value) 返回 $value 的類型。
type-of(abc) => string type-of("abc") => string type-of(true) => bool type-of(#fff) => color type-of(green) => color4.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"4.3 unitless()
unitless($number) 返回 $number 是否帶有單位;如果不帶單位返回值為 true,帶單位返回值為 false。
unitless(100) => true unitless(100px) => false5. Miscellaneous 函數
Miscellaneous 函數稱為三元條件函數,主要因為他和 JavaScript 中的三元判斷非常的相似。他有兩個值,當條件成立返回一種值,當條件不成立時返回另一種值
if($condition, $if-true, $if-false)
當 $condition 條件為真,則返回 $if-true 值,否則返回 $if-false值。
if(true, 1px, 2px) => 1px if(false, 1px, 2px) => 2px6. 顏色函數
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)7. Reference API
Sass::Script::Functions — Sass Documentation
結語:既然你都看到這里了,我就說說吧,這些個函數其實也就在自己寫插件的時候有用,其他時候可能會有些大材小用。
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/115183.html
摘要:例如被編譯為最后一個栗子字符運算運算符可以用來連接字符串被編譯為注意,如果有引號的字符串被添加了一個沒有引號的字符串也就是,帶引號的字符串在符號左側,結果會是一個有引號的字符串。 學習Sass無非就是想高效的、 面向對象編寫CSS,Sass中的Operations也是重要的一部分。現在的前端各種工程化、模塊化、面向工資編程,哦...不對,是面向對象編程。玩起來吧! 1. 加減法 加減法...
摘要:普遍情況下這仨在實際項目中用得還是比較多的,玩起來吧混合宏如果你的代碼塊中涉及到變量,建議使用混合宏來創建相同的代碼塊。不足如果在樣式文件中調用同一個混合宏,會產生多個對應的樣式代碼,造成代碼的冗余。 學習Sass無非就是想高效的、 面向對象編寫CSS,Sass中的@-Rules也是重要的一部分。普遍情況下這仨在實際項目中用得還是比較多的,玩起來吧! 1. 混合宏@mixin 如果你的...
摘要:根據文件名引入。這和指令非常相似,只要后面的條件為就會執行。被編譯為循環指令的形式,是個變量名,是一個表達式,他將返回一個列表值。被編譯為學完了回過頭來整理也真是麻煩,算是總結吧。 前戲:下面這些玩意還是比較實用的,好像是進階Sass必備的,以后寫起 CSS 要溜得飛起啊! 規則(Rules) 1. @import Sass 擴展了 CSS 的 @import 規則,讓它能夠引入 SC...
摘要:忍者級別的函數操作對于什么是匿名函數,這里就不做過多介紹了。我們需要知道的是,對于而言,匿名函數是一個很重要且具有邏輯性的特性。通常,匿名函數的使用情況是創建一個供以后使用的函數。 JS 中的遞歸 遞歸, 遞歸基礎, 斐波那契數列, 使用遞歸方式深拷貝, 自定義事件添加 這一次,徹底弄懂 JavaScript 執行機制 本文的目的就是要保證你徹底弄懂javascript的執行機制,如果...
閱讀 1696·2021-09-26 09:55
閱讀 3727·2021-09-22 15:31
閱讀 7409·2021-09-22 15:12
閱讀 2217·2021-09-22 10:02
閱讀 4679·2021-09-04 16:40
閱讀 1072·2019-08-30 15:55
閱讀 3028·2019-08-30 12:56
閱讀 1819·2019-08-30 12:44