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。
$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文件用下面的代碼:
p { color: #ff66ff; }
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
將上面的html代碼保存在color_operations.html文件中。
在瀏覽器中打開此HTML文件,將顯示如下輸出。
更多建議: