淘先锋技术网

首页 1 2 3 4 5 6 7

描述

SASS允许使用颜色分量和算术运算,任何颜色表达式都返回SassScript颜色值。

例子

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

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

接下来,创建文件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

接下来执行上面的命令,它将自动创建style.css文件用下面的代码:

style.css

p{color:#ff66ff;}

输出

让我们执行以下步骤,看看上面的代码如何工作:

  • 将上面的html代码保存在color_operations.html文件中。

  • 在浏览器中打开此HTML文件,将显示如下输出。

Sass Operations