HSL声明使用色调Hue(H)、饱和度Saturation(s)和亮度Lightness(L)来设置颜色。 Hue衍生于色盘:0和360是红色,接近120的是绿色,240是蓝色。 Saturation值是一个百分比:0%是灰度,100%饱和度最高 Lightness值也是一个百分比:0%是最暗,50%均值,100%最亮。
目前HSL和HSLA被Firefox、Google Chrome、和Safari浏览器较好的支持,而且不需要任何前缀 CSS3 HSL
上面的演示由以下样式实现
1 | div.hslL1 { background:hsl(320, 100%, 50%); height:20px; } |
[backcolor=rgb(248, 248, 248) !important]2 | div.hslL2 { background:hsl(320, 50%, 50%); height:20px; } |
3 | div.hslL3 { background:hsl(320, 100%, 75%); height:20px; } |
[backcolor=rgb(248, 248, 248) !important]4 | div.hslL4 { background:hsl(202, 100%, 50%); height:20px; } |
5 | div.hslL5 { background:hsl(202, 50%, 50%); height:20px; } |
[backcolor=rgb(248, 248, 248) !important]6 | div.hslL6 { background:hsl(202, 100%, 75%); height:20px; } |
CSS3 HSLA
1 | div.hslaL1 { background:hsla(165, 35%, 50%, 0.2); height:20px; } |
[backcolor=rgb(248, 248, 248) !important]2 | div.hslaL2 { background:hsla(165, 35%, 50%, 0.4); height:20px; } |
3 | div.hslaL3 { background:hsla(165, 35%, 50%, 0.6); height:20px; } |
[backcolor=rgb(248, 248, 248) !important]4 | div.hslaL4 { background:hsla(165, 35%, 50%, 0.8); height:20px; } |
5 | div.hslaL5 { background:hsla(165, 35%, 50%, 1.0); height:20px; } |
|