css3 RGBA

代码:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.box{}
.box span{
    display: block;
    float: left;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
}
.box span:nth-child(1){background-color: rgba(253,253,1,1);}
.box span:nth-child(2){background-color: rgba(253,253,1,.8);}
.box span:nth-child(3){background-color: rgba(253,253,1,.6);}
.box span:nth-child(4){background-color: rgba(253,253,1,.4);}
.box span:nth-child(5){background-color: rgba(253,253,1,.2);}
</style>
</head>
<body>
    <div class="box">
        <span>100%</span>
        <span>80%</span>
        <span>60%</span>
        <span>40%</span>
        <span>20%</span>
    </div>
</body>
</html>

效果图:

技术分享

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。