详解:39 css3新增颜色属性 hsl hsla rgb rgba
【摘要】
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
div
{
width: 300px;
height: 300px;
border: 1px solid red;
}
.box1
{
background-color: #000;
opacity: .5;
filter: alpha(opacity=50);
color: white;
}
.box2
{
background-color: rgba(0,0,0,0.5);
}
.box3
{
background-color: hsl(0,100%,50%);
}
.box4
{
background-color: hsla(9,35%,55%,0.73);
}
.box5
{
background-color: rgba(180,112,100,0.73);
}
.box6
{
background-color: transparent;
}
.box7
{
color: pink;
border: 1px solid currentColor;
}
</style>
</head>
<body>
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
<div class="box4"></div>
<div class="box5"></div>
<div class="box6"></div>
<div class="box7"></div>
<div class="box8"></div>
</body>
</html>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
opacity: .5;
filter: alpha(opacity=50);
- 1
- 2
为什么要联合写,因为filter: alpha(opacity=50);
只有ie支持,其他浏览器不支持,opacity: .5;
这个ie不支持这个。其他浏览器都支持。
两个都写的话,那哪一个浏览器都支持了呀。
background-color: rgba(0,0,0,0.5);
- 1
最后一个是透明度,0~1之间的透明度。
0(0%)为透明,1不透明(100%)。
background-color: hsl(0,100%,50%);
- 1
HSL即是代表色调,饱和度,亮度三个通道的颜色.
h:Hue(色调)。 0(或360)表示红色,120表示绿色,240表示蓝色,当然可取其他数值来确定其它颜色.
s:Saturation(饱和度)。 取值为0%到100%之间的值;
e:Lightness(亮度)。 取值为0%到100%之间的值;
最后的a代表透明度。与rgba的a一样的取值。
文章来源: blog.csdn.net,作者:贵哥的编程之路(陈业贵),版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/qq_37805832/article/details/107572271
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)