Sass if()函式


基於所述條件,內建 if() 函式從兩個可能的結果返回一個結果。所述函式結果可能不能定義或進一步計算變數。

語法

if( expression, value1, value2 )

範例

下面的例子演示了在SCSS檔案使用 if() 函式:

if_function.html

<html>
<head><meta charset="utf-8"> <title>控制指令和表示式</title> <link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
   <h2>Welcome to Yiibai Yiibai</h2>
</body>
</html>
接下來,建立檔案style.scss

style.scss

h2{
   color: if( 1 + 1 == 2 , green , red);
}
可以告訴SASS監視檔案,並隨時使用下面的命令更新SASS檔案修改CSS:
sass --watch C:\Ruby22-x64\style.scss:style.css
接著執行上面的命令,它會自動建立style.css檔案,下面的程式碼:

style.css

h2 {
  color: green; }

輸出結果

讓我們來執行以下步驟,看看上面的程式碼工作:
儲存上面的html程式碼在 if_function.html 檔案
在瀏覽器中開啟該HTML檔案,輸出如下得到顯示。