Sass 顏色運算符

2018-12-30 18:45 更新

描述

SASS允許使用顏色分量和算術(shù)運算,任何顏色表達式都返回SassScript顏色值。

例子

下面的示例演示了在SCSS文件中使用顏色操作:

<html>
<head>
   <title>Color Operations</title>
   <link rel="stylesheet" type="text/css" href="style.css" />
   <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
   <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
   <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</head>
<body>
   <div class="container">
   <h3>This is Example of Sass Color Operations</h3>
   <p>SASS stands for Syntactically Awesome Stylesheet..</p>
   </div>
</body>
</html>

接下來,創(chuàng)建文件style.scss。

style.scss

$color1: #333399;
$color2: #CC3399;
p{
	color: $color1 + $color2;
}

您可以通過使用以下命令讓SASS查看文件并在SASS文件更改時更新CSS:

sass --watch C:\ruby\lib\sass\style.scss:style.css

接下來執(zhí)行上面的命令,它將自動創(chuàng)建style.css文件用下面的代碼:

style.css

p {
  color: #ff66ff;
}

輸出

讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:

  • 將上面的html代碼保存在color_operations.html文件中。

  • 在瀏覽器中打開此HTML文件,將顯示如下輸出。

Sass Operations
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號